@php if ($account->phone) { Theme::set('hotlineNumber', $account->phone); } @endphp
{{ __('Agent info') }}
@if ($account->url) @if ($account->avatar->url) {{ $account->name }} @else {{ $account->name }} @endif @else @if ($account->avatar->url) {{ $account->name }} @else {{ $account->name }} @endif @endif

{{ $account->name }}

@if ($account->email && !setting('real_estate_hide_agency_email', 0))

{{ __('Email') }}: {{ $account->email }}

@endif @if ($account->phone && !setting('real_estate_hide_agency_phone', 0))

{{ __('Phone') }}: {{ $account->phone }}

@endif

{{ __('Joined on') }}: {{ $account->created_at->toDateString() }}

{!! BaseHelper::clean($account->description) !!}

@if ($properties->count())
{{ __('Properties by this agent') }}
@foreach ($properties as $property)
{!! Theme::partial('real-estate.properties.item', ['property' => $property]) !!}
@endforeach
@else

{{ __('0 results') }}

@endif