Laravel 5.3 - TokenMismatchException in VerifyCsrfToken.php line 68:
When I log in to my app, and immediately go back when I enter it, and then try to log out, I get the error from the title, how can I fix that? I was facing same issue with laravel 5.4 .. and then following command works for me :) chmod 777 storage/framework/sessions/ before this, it was chmod 775 storage/framework/sessions/ ... hence I was facing the issue... Happy coding From Laravel 5.3 docs The Auth::routes method now registers a POST route for /logout instead of a GET route. This prevents other web applications from logging your users out of your application. To upgrade, you should either