In my web application alpha testing , one are two fiends are complaining about the csrf token mismatch problem,
is there any way to check whether the csrf token is working properly without going into the test feature of laravel ?
I am using
Route::post('signup', array('before' => 'guest|csrf','uses' => 'AuthController@postSignup'));
this in route
and
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
inside the form, is there anything I have done wrong ?
Also I want to know, what are the possible cause for a user manual inputting does not match the csrf token ?