{!! html()->form('GET', route('reference-list'))->open() !!}
{{ html()->label(__('message.select_name', ['select' => __('message.country')]), 'country_id')->class('form-control-label') }} {{ html()->select('country_id', $country, $selectedCountryId) ->class('select2js form-group country') ->attribute('data-placeholder', __('message.select_name', ['select' => __('message.country')])) ->attribute('data-ajax--url', route('ajax-list', ['type' => 'country-list'])) }}
{{ html()->label(__('message.select_name', ['select' => __('message.city')]), 'city_id')->class('form-control-label') }} {{ html()->select('city_id', $cities, $selectedCityId) ->class('select2js form-group city') ->attribute('data-placeholder', __('message.select_name', ['select' => __('message.city')])) ->attribute('data-ajax--url', route('ajax-list', ['type' => 'city-list'])) }}
@if(isset($reset_file_button)) {!! $reset_file_button !!} @endif
{{ html()->form()->close() }}