6 |--------------------------------------------------------------------------
7 | Validation Language Lines
8 |--------------------------------------------------------------------------
10 | The following language lines contain the default error messages used by
11 | the validator class. Some of these rules have multiple versions such
12 | as the size rules. Feel free to tweak each of these messages here.
16 'accepted' => 'The :attribute must be accepted.',
17 'active_url' => 'The :attribute is not a valid URL.',
18 'after' => 'The :attribute must be a date after :date.',
19 'alpha' => 'The :attribute may only contain letters.',
20 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
21 'alpha_num' => 'The :attribute may only contain letters and numbers.',
22 'array' => 'The :attribute must be an array.',
23 'before' => 'The :attribute must be a date before :date.',
25 'numeric' => 'The :attribute must be between :min and :max.',
26 'file' => 'The :attribute must be between :min and :max kilobytes.',
27 'string' => 'The :attribute must be between :min and :max characters.',
28 'array' => 'The :attribute must have between :min and :max items.',
30 'boolean' => 'The :attribute field must be true or false.',
31 'confirmed' => 'The :attribute confirmation does not match.',
32 'date' => 'The :attribute is not a valid date.',
33 'date_format' => 'The :attribute does not match the format :format.',
34 'different' => 'The :attribute and :other must be different.',
35 'digits' => 'The :attribute must be :digits digits.',
36 'digits_between' => 'The :attribute must be between :min and :max digits.',
37 'email' => 'The :attribute must be a valid email address.',
38 'filled' => 'The :attribute field is required.',
39 'exists' => 'The selected :attribute is invalid.',
40 'image' => 'The :attribute must be an image.',
41 'in' => 'The selected :attribute is invalid.',
42 'integer' => 'The :attribute must be an integer.',
43 'ip' => 'The :attribute must be a valid IP address.',
45 'numeric' => 'The :attribute may not be greater than :max.',
46 'file' => 'The :attribute may not be greater than :max kilobytes.',
47 'string' => 'The :attribute may not be greater than :max characters.',
48 'array' => 'The :attribute may not have more than :max items.',
50 'mimes' => 'The :attribute must be a file of type: :values.',
52 'numeric' => 'The :attribute must be at least :min.',
53 'file' => 'The :attribute must be at least :min kilobytes.',
54 'string' => 'The :attribute must be at least :min characters.',
55 'array' => 'The :attribute must have at least :min items.',
57 'not_in' => 'The selected :attribute is invalid.',
58 'numeric' => 'The :attribute must be a number.',
59 'regex' => 'The :attribute format is invalid.',
60 'required' => 'The :attribute field is required.',
61 'required_if' => 'The :attribute field is required when :other is :value.',
62 'required_with' => 'The :attribute field is required when :values is present.',
63 'required_with_all' => 'The :attribute field is required when :values is present.',
64 'required_without' => 'The :attribute field is required when :values is not present.',
65 'required_without_all' => 'The :attribute field is required when none of :values are present.',
66 'same' => 'The :attribute and :other must match.',
68 'numeric' => 'The :attribute must be :size.',
69 'file' => 'The :attribute must be :size kilobytes.',
70 'string' => 'The :attribute must be :size characters.',
71 'array' => 'The :attribute must contain :size items.',
73 'string' => 'The :attribute must be a string.',
74 'timezone' => 'The :attribute must be a valid zone.',
75 'unique' => 'The :attribute has already been taken.',
76 'url' => 'The :attribute format is invalid.',
79 |--------------------------------------------------------------------------
80 | Custom Validation Language Lines
81 |--------------------------------------------------------------------------
83 | Here you may specify custom validation messages for attributes using the
84 | convention "attribute.rule" to name the lines. This makes it quick to
85 | specify a specific custom language line for a given attribute rule.
90 'password-confirm' => [
91 'required_with' => 'Password confirmation required',
96 |--------------------------------------------------------------------------
97 | Custom Validation Attributes
98 |--------------------------------------------------------------------------
100 | The following language lines are used to swap attribute place-holders
101 | with something more reader friendly such as E-Mail Address instead
102 | of "email". This simply helps us make messages a little cleaner.