I'm very new to Laravel. So please go easy on me.
I'm having this message for "before:18 years ago" date validator.
The "" must be a date before 18 years ago.
How can I customize it ? Do I need to compile something ?
I have this in my validation.php which is in the resources/lang/en/
'custom' => [
'dob' => [
'before' => 'Invalid Age'
],
],
I'm using a FormBuilder
https://pyrocms.com/help/developer-tools/form-builders/creating-a-form-builder
'dob' => [
'type' => 'anomaly.field_type.datetime',
'config' => [
"mode" => "date",
"date_format" => "j F, Y",
"year_range" => "-100:-18",
],
'rules' => [
'required','before:18 years ago'
],
],