In my laravel project when i click on logout and if the session is timed out it shows and error for token miss match.But i want like it goes to the login page.how to solve this.
In other pages when session timedout it goes to the login page i want same for the logout.
in my web all other pages are under the following auth middleware thats may be the reason other pages works fine.
Route::group(['middleware' => ['auth', 'changepassword']], function ()
{ }
VerifyCsrfToken
error? Could you post the full error? - Jerodev