Skip to content

Commit a282304

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents d998b5b + 0da3df2 commit a282304

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/Http/Controllers/Auth/AuthController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ protected function validator(array $data)
5151
return Validator::make($data, [
5252
'name' => 'required|max:255',
5353
'email' => 'required|email|max:255|unique:users',
54-
'password' => 'required|confirmed|min:6',
54+
'password' => 'required|min:6|confirmed',
5555
]);
5656
}
5757

resources/lang/en/validation.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
'filled' => 'The :attribute field is required.',
4141
'image' => 'The :attribute must be an image.',
4242
'in' => 'The selected :attribute is invalid.',
43+
'in_array' => 'The :attribute field does not exist in :other.',
4344
'integer' => 'The :attribute must be an integer.',
4445
'ip' => 'The :attribute must be a valid IP address.',
4546
'json' => 'The :attribute must be a valid JSON string.',

0 commit comments

Comments
 (0)