@extends('layouts.apps') @section('title', 'Bishop Profile - Africa Inland Church Tanzania(AICT)') @section('title', $bishop->full_name . ' profile') @section('content')
{{-- Left Column: Photo + Bio, Posts, Photos --}}
{{-- Bishop Photo --}} {{ $bishop->full_name }} {{-- Biography --}}

Biography

{{ $bishop->biography ?: 'No biography available.' }}

{{-- Posts --}}

Posts

No posts made yet by this leader

{{-- Update this if you have posts --}} {{-- Photos --}}

Photos

@if($bishop->photos && $bishop->photos->isNotEmpty())
@foreach($bishop->photos as $photo)
@endforeach
@else

No photos uploaded yet

@endif
{{-- Center Column: Profile Details --}}

{{ $bishop->full_name }} profile

Position: {{ $bishop->is_archbishop ? 'Archbishop' : 'Bishop' }}


Full names: {{ $bishop->full_name }}

Date Of Birth: {{ \Carbon\Carbon::parse($bishop->dob)->format('d/m/Y') }}

Married to: {{ $bishop->married_to ?: 'N/A' }}

Diocese(s): @if($bishop->diocese) Joined {{ $bishop->diocese->name }} in {{ $bishop->start_year }} @else None @endif

{{-- Right Column: Sidebar --}}
@endsection