I'm having two problems resetting my password in Laravel 5:
I usually get an error saying the user can't be found. This is false because I'm copying my email address from the users table in the database.
I sometimes get this error:
QueryException in Connection.php line 624:
SQLSTATE[42000]: Syntax error or access violation: 1103 Incorrect table name '' (SQL: delete from `` where email
= username@example.com)
I'm using the default Laravel 5 authentication and password reset code.
Your config/auth.php needs to have values in its 'password' item. For example:
'password' => [
'email' => 'emails.password',
'table' => 'password_resets',
'expire' => 60,
],
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community