Token is read from Session so you can not flush you session before you submit your form.
If you need to flush you will have to use something like this
foreach (Session::all() as $key=>$item){
if ($key!='_token') Session::forget($key);
}
Thank @TorchSK
Can you help me this trouble?
http://laravel.io/forum/05-01-2015-has-been-auto-signout-l4-and-l5
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community