[Vuejs]-How can I update a post in laravel using formData?

0👍

I think StorePostRequest class cause the block of user authorization.

Try add following lines at StorePostRequest to pass the authorization check.

public function authorize()
{
     return true;   //Default false;
}

Leave a comment