<form method="post">
@csrf
</form>
php artisan view:clear
php artisan cache:clear
php artisan route:clear
php artisan config:clear
You may forgot to put @csrf in your form
dont forget to put @csrf in your form
$this->renderable(function (Exception $e) {
if ($e->getPrevious() instanceof IlluminateSessionTokenMismatchException) {
return redirect()->route('login');
};
});