authのバリデーションって日本語化メッセージ出すのってcustomの上のところを変えるしか無いのか。
:attributeは適応されてるけどcustomの所が対応してない
//lang以下のvalidation.php
'email' => 'The :attribute must be a valid email address.',

'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
'email' => 'The :attribute hoge.',
]

//エラーメッセージ
'The イーメール must be a valid email address.'
思ってたのと違う