-
Laravel Fortify.It is for development purpose. I keep getting "Please wait before retrying.". FortifyServiceProvider.php RateLimiter::for('forgot-password', function (Request $request) {
return Limit::none();
}); fortify.php 'limiters' => [
'login' => 'login',
'two-factor' => 'two-factor',
'forgot-password' => 'forgot-password'
], |
Beta Was this translation helpful? Give feedback.
Answered by
amlxv
Sep 3, 2023
Replies: 2 comments
-
Came across this post. The question was for laravel 8, but it may work in 10 as well. https://stackoverflow.com/questions/66485790/how-to-ratelimit-forgot-password-requests-in-laravel-fortify |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you @henzeb for your response. I've found the solution. config/auth.php 'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_reset_tokens',
'expire' => 60,
'throttle' => 0, // default: 60
],
], |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
amlxv
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you @henzeb for your response. I've found the solution.
config/auth.php