You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a registration form with unique email validation, when i enter multiple duplicate emails it does not apply unique validation for email i have rules below, Note: i am using mongodb.
public static $rules = array(
'email' => 'required|email|unique:users'
);