@extends('backend.layouts.app') @section('content')
Logo

{{ $organization->organization_name }}

{{ $organization->organization_type }}

Registration Number {{ $organization->registration_number ?? '-' }}
Established Date {{ \Carbon\Carbon::parse($organization->est_date)->format('d M, Y') }}
Email {{ $organization->email }}
Mobile {{ $organization->mobile }}
Website @if ($organization->website) {{ $organization->website }} @else - @endif
Address {{ $organization->address }}
Representative {{ $organization->full_name }}
Status {{ $organization->is_approved ? 'Approved' : 'Pending' }}
← Back to List
@endsection