Contact Details

@if (empty($user->image))
{{ $initials??'' }}
@else Avatar @endif

{{ $user->first_name . ' ' . $user->last_name }}

@if (!empty($user->address))
Address
{{ $user->address }}
@endif
User Contact Group
{{ $user['type']??"" }}
Visible in the app
{{ config('constant.yes_no_list')[$user->visible_in_app] ?? '' }}
Visible to
@if ($user->visible_to == 'selected_user') Selected User @elseif ($user->visible_to == 'selected_user_group') Selected User Group @else All Users @endif
@if (!empty($user->notes))
Notes
{{ $user->notes }}
@endif @if (!empty($user->emergency_contact_name))
Emergency Contact Name
{{ $user->emergency_contact_name }}
@endif @if (!empty($user->emergency_contact_number))
Emergency Contact Phone
{{ $user->emergency_contact_number }}
@endif