how can i remove an invalid authloginusingid after setting the remember me argument to true in laravel?

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.

Leave a Comment

Your email address will not be published.

Scroll to Top