1<meta name="csrf-token" content="{{ csrf_token() }}">
2//if not work
3composer dump-autoload
1$this->renderable(function (\Exception $e) {
2 if ($e->getPrevious() instanceof \Illuminate\Session\TokenMismatchException) {
3 return redirect()->route('login');
4 };
5});