0

I am getting tokenmismatchexception in verifycsrftoken.php line 68 laravel

i've tried to send the token as hidden field but its not working.

<input type="hidden" name="_token" value="{{ csrf_token() }}">

still giving the token mismatch exception.

1 Answers1

0

Try put this in form

<form method="POST">
{{csrf_field()}}
</form>

Also try to delete cookies from browser.

Ivan Jelev
  • 115
  • 3