I have a problem when I change the driver session into database, always token miss match when I try login. I have done some actions like
php artisan config:clear
php artisan config:cache
php artisankey:generate
and also change in config/session.php
return [
'driver' => env('SESSION_DRIVER', 'file'),'lifetime' => 120,
'expire_on_close' => false,
'encrypt' => false,'files' =>
'storage_path('framework/sessions'),'connection' => 'mysql',
'table' => 'sessions',
'store' => null,
'lottery' => [2, 100],
'cookie' => 'laravel_session',
'path' => '/',
'domain' => env('SESSION_DOMAIN', null),
'secure' => env('SESSION_SECURE_COOKIE', false);
'http_only' => true,
];
and this error I have