Browse Source

tweak formatting

Taylor Otwell 4 years ago
parent
commit
ba2f2abe83
2 changed files with 2 additions and 2 deletions
  1. 1 1
      config/auth.php
  2. 1 1
      resources/lang/en/passwords.php

+ 1 - 1
config/auth.php

@@ -97,7 +97,7 @@ return [
             'provider' => 'users',
             'table' => 'password_resets',
             'expire' => 60,
-            'timeout' => 60,
+            'throttle' => 60,
         ],
     ],
 

+ 1 - 1
resources/lang/en/passwords.php

@@ -17,6 +17,6 @@ return [
     'sent' => 'We have e-mailed your password reset link!',
     'token' => 'This password reset token is invalid.',
     'user' => "We can't find a user with that e-mail address.",
-    'timeout' => 'Please wait before retrying.',
+    'throttle' => 'Please wait before retrying.',
 
 ];