{!! html()->form('GET', route('users.store'))->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'])) !!}
{!! html()->label(__('message.status') . '(info)', 'last_actived_at')->class('form-control-label') !!} {!! html()->select('last_actived_at', [ '' => __('message.all'), 'active_user' => __('message.active_user'), 'engaged_user' => __('message.engaged_user'), 'inactive_user' => __('message.inactive_user') ], $params['last_actived_at'] ?? old($params['last_actived_at'])) ->class('form-control select2js') !!}
{!! html()->button(__('message.apply_filter'))->class('btn btn-sm btn-warning text-white mt-3 pt-2 pb-2')->type('submit') !!}
@isset($reset_file_button) {!! $reset_file_button !!} @endisset
{!! html()->form()->close() !!}