Skip to content

Commit 01abe7d

Browse files
committed
Sync error messages with laravel repo
1 parent 3cc369d commit 01abe7d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

resources/lang/en/validation.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,13 @@
3535
'digits' => 'The :attribute must be :digits digits.',
3636
'digits_between' => 'The :attribute must be between :min and :max digits.',
3737
'email' => 'The :attribute must be a valid email address.',
38-
'filled' => 'The :attribute field is required.',
3938
'exists' => 'The selected :attribute is invalid.',
39+
'filled' => 'The :attribute field is required.',
4040
'image' => 'The :attribute must be an image.',
4141
'in' => 'The selected :attribute is invalid.',
4242
'integer' => 'The :attribute must be an integer.',
4343
'ip' => 'The :attribute must be a valid IP address.',
44+
'json' => 'The :attribute must be a valid JSON string.',
4445
'max' => [
4546
'numeric' => 'The :attribute may not be greater than :max.',
4647
'file' => 'The :attribute may not be greater than :max kilobytes.',
@@ -71,9 +72,9 @@
7172
'array' => 'The :attribute must contain :size items.',
7273
],
7374
'string' => 'The :attribute must be a string.',
75+
'timezone' => 'The :attribute must be a valid zone.',
7476
'unique' => 'The :attribute has already been taken.',
7577
'url' => 'The :attribute format is invalid.',
76-
'timezone' => 'The :attribute must be a valid zone.',
7778

7879
/*
7980
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)