laravel/resources/lang/en/passwords.php

23 lines
744 B
PHP
Raw Normal View History

2013-02-08 14:24:18 -06:00
<?php
2014-08-28 13:08:05 +03:00
return [
2013-02-08 14:24:18 -06:00
2015-02-22 20:47:03 -06:00
/*
|--------------------------------------------------------------------------
2015-11-24 16:32:01 +01:00
| Password Reset Language Lines
2015-02-22 20:47:03 -06:00
|--------------------------------------------------------------------------
|
| 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.
|
*/
2013-02-08 14:24:18 -06:00
'reset' => 'Your password has been reset!',
2020-01-17 16:15:38 -06:00
'sent' => 'We have emailed your password reset link!',
'throttled' => 'Please wait before retrying.',
2015-07-02 14:20:33 -05:00
'token' => 'This password reset token is invalid.',
2020-01-17 16:15:38 -06:00
'user' => "We can't find a user with that email address.",
2014-08-12 18:07:24 -04:00
2014-08-28 13:08:05 +03:00
];