{{-- {!! html()->form('GET')->open() !!}
{!! html()->label(__('message.select_name', ['select' => __('message.country')]))->for('country_id')->class('form-control-label') !!} {!! html()->select('country_id', $selectedCountry, request()->input('country_id')) ->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')]))->for('city_id')->class('form-control-label') !!} {!! html()->select('city_id', $selectedCity, request()->input('city_id')) ->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()->button(__('message.apply_filter'))->type('submit')->class('btn btn-sm btn-warning text-white mt-3 pt-2 pb-2') !!} {{ __('message.reset') }}
{!! html()->form()->close() !!} --}}
@foreach($userAddresses as $item)
{{ $item->address }}
{{ $item->contact_number }}
@endforeach
@section('bottom_script') @endsection