@if($theOffice)

{{ $theOffice->name }}

@if($contacts = $theOffice->contacts)
@if(count($contacts) > 1)
@lang('contact.humans')
@else
@lang('contact.human')
@endif @foreach($contacts as $contact)
@if($image = $contact->getFirstMedia('featured')) {{ $image->name }} @else @endif

{{ $contact->name }} {{ $contact->title }}

@endforeach
@endif
@endif
@include('open.contact._partials.map')