Laravel Issues - Token missmatch

132 Views Asked by At

I use Laravel 5.1 in my project.

When I open a url it sometimes works fine, but sometimes I get this screen: enter image description here

I don't know why? What can be the problem? On every form I have {{ csrf_field() }}

1

There are 1 best solutions below

1
On

Have you added exactly this in your forms?

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

Or have you just put {{ csrf_field() }} in your blade within your form? Because then you have to do:

{!! csrf_field() !!}