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.
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.
Try put this in form
<form method="POST">
{{csrf_field()}}
</form>
Also try to delete cookies from browser.