{{ html()->select('country_id', isset($data) ? [$data->country->id => $data->country->name] : [], old('country_id'))->class('select2js form-group country_id')->attribute('data-placeholder', __('message.country'))->attribute('data-ajax--url', route('ajax-list', ['type' => 'country-list'])) }}
{{ html()->select('city_id', isset($data) ? [$data->city->id => $data->city->name] : [], old('city_id'))->class('select2js form-group city_id')->attribute('data-placeholder', __('message.city')) }}