2021-04-16 01:00:00 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Password Reset Language Lines
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The following language lines are the default lines which match reasons
|
|
|
|
| that are given by the password broker for a password update attempt
|
|
|
|
| has failed, such as for an invalid token or invalid new password.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'reset' => 'Your password has been reset!',
|
2022-03-16 13:03:43 +01:00
|
|
|
'sent' => 'We have emailed your password reset link! If you do not see the email in a few minutes, check your junk mail or spam folder.',
|
2021-04-16 01:00:00 +02:00
|
|
|
'throttled' => 'Please wait before retrying.',
|
|
|
|
'token' => 'This password reset token is invalid.',
|
|
|
|
'user' => "We can't find a user with that email address.",
|
|
|
|
|
|
|
|
];
|