2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
2018-12-16 08:12:13 -05:00
|
|
|
/**
|
|
|
|
* Password Reminder 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.
|
|
|
|
*/
|
2015-07-12 15:01:42 -04:00
|
|
|
return [
|
|
|
|
|
2019-09-13 18:58:40 -04:00
|
|
|
'password' => 'Passwords must be at least eight characters and match the confirmation.',
|
2015-07-12 15:01:42 -04:00
|
|
|
'user' => "We can't find a user with that e-mail address.",
|
2020-04-10 08:38:08 -04:00
|
|
|
'token' => 'The password reset token is invalid for this email address.',
|
2015-07-12 15:01:42 -04:00
|
|
|
'sent' => 'We have e-mailed your password reset link!',
|
|
|
|
'reset' => 'Your password has been reset!',
|
|
|
|
|
|
|
|
];
|