How to change laravel's form verification information to Chinese?
ringa_lee
You can customize the verification rules and messages
$this->validate($request,[ '验证的表单名称(例如name)' => '验证规则', ],[],[ '验证的表单名称(例如name)' => '你想改成的中文(例如 姓名)' ])
You can customize the verification rules and messages