Remove throttle from GET in password reset

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-06-21 18:53:14 -07:00
parent 2f258a3e3d
commit 17ee332715

View file

@ -449,7 +449,7 @@ Route::group(['middleware' => 'web'], function () {
Route::get(
'password/reset/{token}',
[ResetPasswordController::class, 'showResetForm']
)->name('password.reset')->middleware('throttle:'.config('auth.passwords.users.throttle.password_max_attempts').','.config('auth.passwords.users.throttle.lockout_duration'));
)->name('password.reset');
Route::post(