Remove unique email entry

This commit is contained in:
web541 2018-01-03 16:15:48 +11:00 committed by GitHub
parent aa19bbd5dc
commit e3bd4fb169
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ class User extends Authenticatable
public static $rules = [
'name' => 'required',
'email' => 'required|email|unique:users,email',
'email' => 'required|email',
];
/**