@endif
@if($account->is_verified)
{{ trans('plugins/real-estate::account.verified') }}
{{ trans('plugins/real-estate::account.account_verified_successfully') }}
@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.not_verified') }}
{{ trans('plugins/real-estate::account.account_not_verified_yet') }}
{{ trans('plugins/real-estate::account.verification_pending') }}
{{ trans('plugins/real-estate::account.click_verify_to_approve') }}
@endif