diff --git a/src/Commands/User.php b/src/Commands/User.php index c78b86e01..9a2b39c1f 100644 --- a/src/Commands/User.php +++ b/src/Commands/User.php @@ -232,6 +232,9 @@ private function setValidationRules(): void if (($key = array_search('strong_password[]', $passwordRules, true)) !== false) { unset($passwordRules[$key]); } + if (($key = array_search('strong_password', $passwordRules, true)) !== false) { + unset($passwordRules[$key]); + } /** @var Auth $config */ $config = config('Auth');