if you are sure that the login system works fine and the only problem is with remember me option, it could be because of missing remember_me
column or some changes that you’ve made on remember_me
column that you shouldn’t do in your users migration.
make sure you have the following line in your users migration, if you are using version 8 of laravel as you have used it’s tag:
$table->rememberToken();
and if you are using older version of laravel, you should have the following line:
$table->string('remember_me', 100)->nullable();
CLICK HERE to find out more related problems solutions.