Files
aso/resources/lang/en/Validation.php
2024-04-23 16:30:55 +07:00

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.'
];