Skip to content

Commit

Permalink
Update RegisterController.php
Browse files Browse the repository at this point in the history
  • Loading branch information
cretueusebiu committed Oct 31, 2020
1 parent b58fad9 commit cc917bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/RegisterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected function validator(array $data)
{
return Validator::make($data, [
'name' => 'required|max:255',
'email' => 'required|email|max:255|unique:users',
'email' => 'required|email:filter|max:255|unique:users',
'password' => 'required|min:6|confirmed',
]);
}
Expand Down

0 comments on commit cc917bf

Please sign in to comment.