chore(config): expire password reset tokens after 10min

This commit is contained in:
peaklabs-dev 2025-12-10 15:44:56 +01:00
parent 5e4eae13ae
commit 285c6dd10a
No known key found for this signature in database

View file

@ -90,7 +90,7 @@ return [
'users' => [
'provider' => 'users',
'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'),
'expire' => 60,
'expire' => 10,
'throttle' => 60,
],
],