@extends('layouts.app') @section('title', 'My Profile') @section('content')

My Profile

Name: {{ $teacher->user->name }}

Staff ID: {{ $teacher->staff_id }}

Department: {{ $teacher->department->name ?? '—' }}

Qualification: {{ $teacher->qualification ?? '—' }}

Date Employed: {{ optional($teacher->date_employed)->format('d M, Y') ?? '—' }}

Edit account details / change password →
@endsection