|
41 | 41 | ], |
42 | 42 | 'boolean' => 'The :attribute field must be true or false.', |
43 | 43 | 'confirmed' => 'The :attribute confirmation does not match.', |
| 44 | + 'contains' => 'The :attribute is missing a required value.', |
44 | 45 | 'date' => 'The :attribute is not a valid date.', |
45 | 46 | 'date_equals' => 'The :attribute must be a date equal to :date.', |
46 | 47 | 'date_format' => 'The :attribute does not match the format :format.', |
|
56 | 57 | 'doesnt_start_with' => 'The :attribute must not start with one of the following: :values.', |
57 | 58 | 'email' => 'The :attribute must be a valid email address.', |
58 | 59 | 'ends_with' => 'The :attribute must end with one of the following: :values.', |
| 60 | + 'enum' => 'The selected :attribute is invalid.', |
59 | 61 | 'exists' => 'The selected :attribute is invalid.', |
| 62 | + 'extensions' => 'The :attribute must have one of the following extensions: :values.', |
60 | 63 | 'file' => 'The :attribute must be a file.', |
61 | 64 | 'filled' => 'The :attribute field is required.', |
62 | 65 | 'gt' => [ |
|
71 | 74 | 'string' => 'The :attribute must be great than or equal to :value characters', |
72 | 75 | 'array' => 'The :attribute must be great than or equal to :value items', |
73 | 76 | ], |
| 77 | + 'hex_color' => 'The :attribute must be a valid hexadecimal color.', |
74 | 78 | 'image' => 'The :attribute must be an image.', |
75 | 79 | 'in' => 'The selected :attribute is invalid.', |
76 | 80 | 'in_array' => 'The :attribute field does not exist in :other.', |
|
93 | 97 | 'string' => 'The :attribute must be less than or equal to :value characters', |
94 | 98 | 'array' => 'The :attribute must be less than or equal to :value items', |
95 | 99 | ], |
| 100 | + 'mac_address' => 'The :attribute must be a valid MAC address.', |
96 | 101 | 'max' => [ |
97 | 102 | 'numeric' => 'The :attribute may not be greater than :max.', |
98 | 103 | 'file' => 'The :attribute may not be greater than :max kilobytes.', |
|
0 commit comments