@extends('layouts.app') @if ($role === 'doctor') @section('title', 'Doctor Profile') @elseif ($role === 'staff') @section('title', 'Doctor Staff Profile') @endif @section('content') @if ($role === 'doctor') @livewire('doctor.profile.doctor-profile-component') @elseif ($role === 'staff') @livewire('doctor.profile.staff-profile-component') @endif @endsection