且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

“密码重置令牌无效"的覆盖错误文本Laravel

更新时间:2023-09-28 19:32:52

您可以在 resources/lang/zh-cn/passwords.php 中的文件中找到翻译字符串.

You can find the translation string in the file located in resources/lang/en/passwords.php.

这还确保您可以将此字符串转换为您使用的其他语言.

This also ensures that you can translate this string for other languages you use.

<?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!',
    'sent' => 'We have e-mailed your password reset link!',
    'token' => 'This password reset token is invalid.',
    'user' => "We can't find a user with that e-mail address.",

此文件