@extends('layouts.app_layout') @section('content')

{{ $whoIsWho->name ?? '—' }}

{{ $whoIsWho->name_hi ?? '—' }}

{{ $whoIsWho->designation ?? '—' }}

{{ $whoIsWho->designation_hi ?? '—' }}

{{ $whoIsWho->division->name ?? '—' }}

{{ $whoIsWho->mobile_number ?? '—' }}

{{ $whoIsWho->email_id ?? '—' }}

@if ($whoIsWho->image)
Current Image:
Profile Image
@endif

{{ $whoIsWho->address ?? '-' }}

{{ $whoIsWho->address_hi ?? '-' }}

{{ $whoIsWho->show_on_homepage_desc }}

{{ $whoIsWho->hide_on_who_is_who_desc}}


@if ($whoIsWho->is_approved == 1) Approved @elseif ($whoIsWho->is_approved == 2) Rejected @else Pending @endif

{!! $whoIsWho->is_published ? 'Published' : 'Not Published' !!}

{{ $whoIsWho->remarks ?? 'No remarks available' }}

@can('approve who-is-who')
Approval Form
@csrf
@endcan @can('publish who-is-who')
Publish Form
@csrf
@endcan
@endsection @section('pages-scripts') @can('approve who-is-who') @endcan @can('publish who-is-who') @endcan @endsection