|string> */ protected function passwordRules(): array { return ['required', 'string', Password::default(), 'confirmed']; } /** * Get the validation rules used to validate the current password. * * @return array|string> */ protected function currentPasswordRules(): array { return ['required', 'string', 'current_password']; } }