Unwanted validation rule being applied on password reset
问题 I'm trying to use the password reset ability of Laravel's authentication. After running make:auth command, inside my ResetPasswordController, I have overridden rules function of Illuminate\Foundation\Auth\ResetsPasswords trait as the following: protected function rules() { return [ 'token' => 'required', 'email' => 'required|email', 'password' => 'required|confirmed|min:4', ]; } So, I am trying to change the minimum length value to 4. But when I try to reset my password, a rule of minimum of