@extends(BaseHelper::getAdminMasterLayoutTemplate()) @section('content')
{{ trans('plugins/real-estate::account.account_info') }} @if($account->avatar_url)
{{ $account->name }}
@endif
{{ trans('plugins/real-estate::account.name') }}
{{ $account->name }}
{{ trans('plugins/real-estate::account.email') }}
{{ $account->email }}
@if($account->phone)
{{ trans('plugins/real-estate::account.phone') }}
{{ $account->phone }}
@endif
{{ trans('plugins/real-estate::account.status') }}
@if($account->blocked_at) {{ trans('plugins/real-estate::account.blocked') }} @else {{ trans('plugins/real-estate::account.active') }} @endif
{{ trans('plugins/real-estate::account.email_verified') }}
@if($account->confirmed_at) {{ trans('core/base::base.yes') }} @else {{ trans('core/base::base.no') }} @endif
{{ trans('plugins/real-estate::account.account_credits') }}
{{ $account->credits ?: 0 }}
{{ trans('plugins/real-estate::account.properties_count') }}
{{ $account->properties()->count() }}
{{ trans('plugins/real-estate::account.projects_count') }}
{{ $account->projects()->count() }}
{{-- Verification Section --}}
@if($account->is_verified)
@else
@endif

{{ trans('plugins/real-estate::account.verification_section') }}

@if($account->is_verified)
@if($account->verifiedBy)
{{ trans('plugins/real-estate::account.verified_by') }}
{{ $account->verifiedBy->name }}
@endif @if($account->verified_at)
{{ trans('plugins/real-estate::account.verified_at') }}
{{ $account->verified_at->format('M d, Y H:i') }}
@endif
@if($account->verification_note)

{{ trans('plugins/real-estate::account.verification_note') }}

{{ $account->verification_note }}

@endif
@else

{{ trans('plugins/real-estate::account.verification_pending') }}

{{ trans('plugins/real-estate::account.click_verify_to_approve') }}

@endif
{{ trans('plugins/real-estate::account.recent_activity') }}

{{ trans('plugins/real-estate::account.recent_properties') }}

@php $recentProperties = $account->properties()->latest()->limit(5)->get(); @endphp @if($recentProperties->count() > 0) @else

{{ trans('plugins/real-estate::account.no_properties') }}

@endif

{{ trans('plugins/real-estate::account.recent_projects') }}

@php $recentProjects = $account->projects()->latest()->limit(5)->get(); @endphp @if($recentProjects->count() > 0) @else

{{ trans('plugins/real-estate::account.no_projects') }}

@endif
@if($account->company || $account->description)

{{ trans('plugins/real-estate::account.account_details') }}

@if($account->company)
{{ trans('plugins/real-estate::account.company') }}
{{ $account->company }}
@endif @if($account->description)
{{ trans('plugins/real-estate::account.description') }}
{{ $account->description }}
@endif @if($account->blocked_at && $account->blocked_reason)
{{ trans('plugins/real-estate::account.form.blocked_reason') }}
@endif
{{ trans('plugins/real-estate::account.member_since') }}
{{ $account->created_at->format('M d, Y') }}
@endif
{{ trans('plugins/real-estate::account.edit_account') }} {{ trans('plugins/real-estate::account.back_to_list') }}
@if(!$account->is_verified)
{{ trans('plugins/real-estate::account.verification_note_help') }}
@else

{{ trans('plugins/real-estate::account.confirm_unverify') }}

@endif @endsection @push('footer') @endpush