From 285c6dd10aa9de5efec7fab4d48e16a6e8047446 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Wed, 10 Dec 2025 15:44:56 +0100 Subject: [PATCH] chore(config): expire password reset tokens after 10min --- config/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/auth.php b/config/auth.php index 57130512d..b23fa2b71 100644 --- a/config/auth.php +++ b/config/auth.php @@ -90,7 +90,7 @@ return [ 'users' => [ 'provider' => 'users', 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), - 'expire' => 60, + 'expire' => 10, 'throttle' => 60, ], ],