13 lines
422 B
PHP
13 lines
422 B
PHP
<?php
|
|
|
|
return [
|
|
'required' => 'The :attribute field is required.',
|
|
'invalid' => 'The :attribute field is invalid.',
|
|
'max' => [
|
|
'file' => ':attribute max size is :max.',
|
|
],
|
|
'email' => 'Invalid email format.',
|
|
'regex' => 'The :attribute must contain at least one uppercase letter, one lowercase letter, and one numeric digit.',
|
|
'min' => 'The :attribute must be at least 8 characters.'
|
|
];
|