@extends('layouts.app') @section('title', $contact->full_name) @section('content')
{{ mb_substr($contact->first_name, 0, 1) }}{{ mb_substr($contact->last_name, 0, 1) }}

{{ $contact->full_name }}

{{ $contact->position ?? '—' }}

@if($contact->organization)

{{ $contact->organization->name }}

@endif
تلفن{{ $contact->phone ?? '—' }}
موبایل{{ $contact->mobile ?? '—' }}
ایمیل{{ $contact->email ?? '—' }}
@if($contact->notes)
یادداشت عادی

{{ $contact->notes }}

@endif
بازگشت به فهرست @role('admin')
@csrf @method('DELETE')
@endrole
@include('partials.custom_fields_display') @endsection