Did you clear your config cache. But not sure on this, it should still behave the same, but try that.
May 4, 2025
8
Level 11
Reset Password Page Session does not expire
After requesting password reset, i noticed that after 60 minites the password reset link does not expire which is unusal.
Level 9
"Link expired" and "Reset token expired" are different issues.
Since temporarySignedRoute() is not used, the link will not expire.
https://github.com/laravel/framework/blob/12.x/src/Illuminate/Auth/Notifications/ResetPassword.php
The reset token will be invalidated if you delete the token with the Artisan command. https://laravel.com/docs/12.x/passwords#deleting-expired-tokens
You can also expire the link by customizing createUrlUsing().
1 like
Please or to participate in this conversation.