@extends('Staff.layout') @section('content')
{{-- Profile Header --}}
@if($staff->profile_photo) @else @endif

{{ $staff->name }}

{{ $staff->designation }} — {{ $staff->department }}

{{ $staff->employee_id }}
{{-- Info --}}
Personal Information

Full Name

{{ $staff->name }}

Email

{{ $staff->email ?? '-' }}

Phone

{{ $staff->phone }}

Gender

{{ $staff->gender ?? '-' }}

Department

{{ $staff->department ?? '-' }}

Designation

{{ $staff->designation ?? '-' }}

Joining Date

{{ $staff->joining_date ?? '-' }}

Status

{{ $staff->status }}
{{-- Update Profile --}}
Update Profile
@csrf

Change Password
@endsection