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