例如,您有2个输入:password
和password_confirmed
。
模型
$rule = array (
'password' => 'min:4|confirmed',
'password_confirmed' => 'min:4',
);
如果用户在password_confirmed输入中输入了错误的密码,验证程序会将消息发送到password
,以便显示错误消息,但password
错误而不是password_confirmation
错误
如何将确认错误转至password_confirmation消息?
答案 0 :(得分:0)
嗯,这可能不是你问题的直接答案,但仍能给出理想的结果。
查看验证的自定义消息:
$messages = [
'password.confirmed' => 'Your passwords were mismatched',
'password_confirmation.min' => 'Your password must be at least 4 characters'
];
您应该可以使用此功能为您的任何字段获取所需的消息。除非我误解你的问题?