<div class="o-contact__person">
@if(!empty($imagePath))
<img class="u-rounded u-spacing-mb1" width="120" height="120" src="{{$imagePath}}" alt="Image" />
@endif
@if(!empty($name))
<h5 class="u-color-neutral--800">{{$name}}</h5>
@endif
@if(!empty($function))
<p>{{$function}}</p>
@endif
@if(!empty($phoneNumber) & !empty($phoneNumberDisplay))
<a class="o-contact__person-phone" href="tel:{{$phoneNumber}}">{{$phoneNumberDisplay}}</a>
@endif
@include('components.textButton', [
'modifiers' => ['small', 'icon'],
'textButtonText' => 'E-mail sturen',
'textButtonLink' => 'mailto:'.$mailAddress,
])
</div>