@extends('plugins/real-estate::account.layouts.skeleton') @section('content')
@include('plugins/real-estate::account.settings.sidebar')

{{ trans('plugins/real-estate::dashboard.account_field_title') }}

{{ $user->name }}
@if (session('status')) @endif
@csrf
@if (setting('verify_account_email', false)) @if ($user->confirmed_at) {{ trans('plugins/real-estate::dashboard.verified') }} @else {{ trans('plugins/real-estate::dashboard.verify_require_desc') }}{{ trans('plugins/real-estate::dashboard.resend') }} @endif @endif
{{ $errors->has('dob') ? $errors->first('dob') : '' }}
@if (is_plugin_active('location'))
{!! Form::customSelect('country_id', $countries, $user->country_id, ['data-type' => 'country']) !!}
{!! Form::customSelect('state_id', $states, $user->state_id, [ 'data-type' => 'state', 'data-url' => route('ajax.states-by-country'), ]) !!}
{!! Form::customSelect('city_id', $cities, $user->city_id, [ 'data-type' => 'city', 'data-url' => route('ajax.cities-by-state'), ]) !!}
@endif {!! apply_filters('account_settings_page', null, $user) !!}
@include('plugins/real-estate::account.modals.avatar')
@endsection @push('scripts') {!! JsValidator::formRequest(\Botble\RealEstate\Http\Requests\SettingRequest::class) !!} @endpush