From 0c5b449c4e6451f8223abd71afe6888f2982c1af Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Fri, 22 Mar 2024 18:02:07 -0400 Subject: [PATCH] Fix password resets --- config/auth.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config/auth.php b/config/auth.php index 77d2084c5..eefb4ede4 100644 --- a/config/auth.php +++ b/config/auth.php @@ -14,4 +14,13 @@ return [ ], ], + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => 'password_resets', + 'expire' => 60, + 'throttle' => 60, + ], + ], + ];