You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was getting some exceptions and was debugging a /CRUD create request. I noticed that there are actually two _token POST parameters being sent. Perhaps one of them needs to be removed from the Blade file?
Hey,
I was getting some exceptions and was debugging a
/CRUD
create request. I noticed that there are actually two_token
POST parameters being sent. Perhaps one of them needs to be removed from the Blade file?<input
is automatically being generated by the{{ Form::open(...
https://github.com/Laravel-Backpack/CRUD/blob/master/src/resources/views/create.blade.php#L24
<input
is explicitly being stated here:https://github.com/Laravel-Backpack/CRUD/blob/master/src/resources/views/create.blade.php#L61
<input type="hidden" name="_token" value="{{{ csrf_token() }}}" />
I would suggest removing line: https://github.com/Laravel-Backpack/CRUD/blob/master/src/resources/views/create.blade.php#L61
Hope that helps. If I'm off-base... just say so... just trying to help. 😄
The text was updated successfully, but these errors were encountered: