@extends('layouts.main_dashboard.app') @section('styles') @endsection @section('title', __('dashboard.View Profile')) @section('page_heading', __('dashboard.View Profile')) @section('breadcrumb') @php $homeRoute = match (auth()->user()?->type) { 'teacher' => route('teacher.home'), 'staff' => route('admin.home'), 'social_worker' => route('social-worker.home'), 'health_visitor' => route('health-visitor.home'), 'student' => route('student.home'), 'parent' => route('parent.home'), default => route('admin.home'), }; @endphp