diff --git a/app/Http/Requests/Client/StoreClientRequest.php b/app/Http/Requests/Client/StoreClientRequest.php index 3a3cd81b1654..a27df9afb5d6 100644 --- a/app/Http/Requests/Client/StoreClientRequest.php +++ b/app/Http/Requests/Client/StoreClientRequest.php @@ -116,7 +116,7 @@ class StoreClientRequest extends Request $input['settings'] = $settings; - if (isset($input['country_code']) && strlen($input['country_code']) == 3) { + if (isset($input['country_code'])) { $input['country_id'] = $this->getCountryCode($input['country_code']); }