Home > Q&A > body text
How to change laravel's form verification information to Chinese?
PHPz2017-05-16 16:52:24
You can customize the verification rules and messages
为情所困2017-05-16 16:52:24
$this->validate($request,[ '验证的表单名称(例如name)' => '验证规则', ],[],[ '验证的表单名称(例如name)' => '你想改成的中文(例如 姓名)' ])