@extends(BaseHelper::getAdminMasterLayoutTemplate())
@section('content')
{{ trans('plugins/real-estate::account.unverified_account.moderate_alert_message') }}
{{ trans('plugins/real-estate::account.unverified_account.approve') }}
{{ trans('plugins/real-estate::account.unverified_account.reject') }}
{{ trans('plugins/kyc-document::kyc-document.admin.agent_personal_information') }}
{{ trans('core/base::tables.name') }}
{{ $account->name }}
{{ trans('plugins/real-estate::account.form.email') }}
{{ $account->email }}
{{ trans('plugins/real-estate::account.phone') }}
{{ $account->phone }}
@if($account->address)
{{ trans('plugins/real-estate::account.address') }}
{{ $account->address }}
@endif
{{ trans('plugins/real-estate::account.dob') }}
{{ BaseHelper::formatDate($account->dob) }}
{{ trans('core/base::tables.created_at') }}
{{ BaseHelper::formatDateTime($account->created_at) }}
{{ trans('plugins/real-estate::account.credits') }}
{{ number_format($account->credits) }}
@if($account->description)
{{ trans('plugins/real-estate::account.description') }}
{{ $account->description }}
@endif
{{ trans('plugins/kyc-document::kyc-document.admin.agent_kyc_document') }}
@foreach($kycDocuments as $documentType)
{{ $documentType->name }}
@if(check_user_kyc_documents_exist(get_user_kyc_documents($account), $documentType->id))
@else
{{'-'}}
@endif
@endforeach
@endsection
@push('footer')
{{ trans('plugins/real-estate::account.unverified_account.reject_modal.description') }}
@endpush