@extends('layouts.admin') @section('title', $church->name) @section('page-title', $church->name) @section('page-subtitle', 'Branch Details') @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@if($church->logo) {{ $church->name }} @else
@endif

{{ $church->name }}

{{ ucfirst($church->status) }}

{{ $church->tagline ?? 'No tagline set' }}

Contact Information

@if($church->email)

Email

{{ $church->email }}

@endif @if($church->phone)

Phone

{{ $church->phone }}

@endif @if($church->address)

Address

{{ $church->address }}

@endif @if($church->service_times)

Service Times

{{ $church->service_times }}

@endif

Statistics

Members
{{ $stats['members'] }}
Visitors
{{ $stats['visitors'] }}
Users
{{ $stats['users'] }}

Quick Actions

View Members Manage Users @if($church->members()->count() > 0)
@csrf @method('DELETE')
@endif
@endsection