@section('title', 'Account settings / Account') @php addVendors(['intlTelInput']); @endphp @push('styles') @endpush @push('scripts') @endpush
@include('pages.account._partials.tabs')
Profile Details

@csrf @method('PUT')
@error('first_name')
{{ $message }}
@enderror
@error('last_name')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('address')
{{ $message }}
@enderror
@error('zip_code')
{{ $message }}
@enderror
{{ Form::label('country_id', __('Country'), ['class' => 'form-label']) }} {!! Form::select('country_id', $countries, auth()->user()->country_id, [ 'class' => 'form-select', 'data-kt-select2' => 'true', 'data-remote' => route('resource-select', ['Country']), 'id' => 'user-countries-id', ]) !!}
{{-- states --}}
{{ Form::label('state_id', __('State'), ['class' => 'form-label']) }} {!! Form::select('state_id', $states, auth()->user()->state_id, [ 'class' => 'form-select', 'data-kt-select2' => 'true', 'data-remote' => route('resource-select', ['State']), 'data-dependent_id' => 'user-countries-id', 'id' => 'user-state-id', ]) !!}
{{-- cities --}}
{{ Form::label('city_id', __('City'), ['class' => 'form-label']) }} {!! Form::select('city_id', $cities, auth()->user()->city_id, [ 'class' => 'form-select', 'data-kt-select2' => 'true', 'data-remote' => route('resource-select', ['City']), 'data-dependent_id' => 'user-state-id' ]) !!}
@error('language')
{{ $message }}
@enderror
@error('timezone')
{{ $message }}
@enderror
@error('currency')
{{ $message }}
@enderror
{{--
Delete Account
Are you sure you want to delete your account?

Once you delete your account, there is no going back. Please be certain.

--}}