| 12345678910111213141516171819202122 |
- <?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.
- |
- */
- 'password' => '密码必须至少小于8位,并且和重输密码一致',
- 'reset' => '你的密码已经被重设!',
- 'sent' => '我们已经重设密码用Email发送给您',
- 'token' => '密码重设Token是无效的',
- 'user' => "该Email地址下找不到用户",
- ];
|