diff --git a/app/Livewire/BillingPortal/Authentication/ClientRegisterService.php b/app/Livewire/BillingPortal/Authentication/ClientRegisterService.php index f24b0b7a4bcf..76c1162c4d39 100644 --- a/app/Livewire/BillingPortal/Authentication/ClientRegisterService.php +++ b/app/Livewire/BillingPortal/Authentication/ClientRegisterService.php @@ -45,7 +45,7 @@ class ClientRegisterService $rules[$field] = array_merge($rules[$field], ['email:rfc,dns', 'max:191', Rule::unique('client_contacts')->where('company_id', $this->company->id)]); } - if ($field === 'current_password') { + if ($field === 'current_password' || $field === 'password') { $rules[$field] = array_merge($rules[$field], ['string', 'min:6', 'confirmed']); } }