{{-- resources/views/frontend/secretaries/show.blade.php --}} @extends('layouts.apps') @section('title', 'Secretary - Africa Inland Church Tanzania(AICT)') @section('title', $secretary->full_name . ' — Secretary') @section('content')
{{-- Photo & Bio --}}
@if($secretary->photo) {{ $secretary->full_name }} @else
No photo available
@endif

Biography

{!! nl2br(e($secretary->biography ?? 'No biography provided.')) !!}

{{-- Details --}}

{{ $secretary->full_name }}

Position: {{ optional($secretary->position)->name ?? 'N/A' }}

Diocese: {{ optional($secretary->diocese)->name ?? 'N/A' }}

Date of Birth: {{ $secretary->dob ? \Carbon\Carbon::parse($secretary->dob)->format('d/m/Y') : 'N/A' }}

@if($secretary->married_to)

Married to: {{ $secretary->married_to }}

@endif

Started: {{ $secretary->start_year ?? 'N/A' }}

{{-- Quick Links --}}
@endsection