TokenMismatchException in VerifyCsrfToken.php line 68,when i try to post a form.
If you don't use Laravel Form
, for example:
{!! Form::open([]) !!}
{!! Form::close() !!}
you can use:
<input type="hidden" name="_token" value="{{ csrf_token() }}">
Sometimes you need to clear your cache as well.
Instead of {{ Form::open() }}
either you can manually add hidden input field in the form just like Andranik Petrosyan suggested
But still I would like you to try
{!! csrf_field() !!}
instead of {{ csrf_field() }}