File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
app/Http/Controllers/Auth Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ protected function validator(array $data)
51
51
return Validator::make ($ data , [
52
52
'name ' => 'required|max:255 ' ,
53
53
'email ' => 'required|email|max:255|unique:users ' ,
54
- 'password ' => 'required|confirmed| min:6 ' ,
54
+ 'password ' => 'required|min:6|confirmed ' ,
55
55
]);
56
56
}
57
57
Original file line number Diff line number Diff line change 40
40
'filled ' => 'The :attribute field is required. ' ,
41
41
'image ' => 'The :attribute must be an image. ' ,
42
42
'in ' => 'The selected :attribute is invalid. ' ,
43
+ 'in_array ' => 'The :attribute field does not exist in :other. ' ,
43
44
'integer ' => 'The :attribute must be an integer. ' ,
44
45
'ip ' => 'The :attribute must be a valid IP address. ' ,
45
46
'json ' => 'The :attribute must be a valid JSON string. ' ,
You can’t perform that action at this time.
0 commit comments