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

My Profile

Name
{{ $patient->user->name ?? '-' }}
Email
{{ $patient->user->email ?? '-' }}
MRN
{{ $patient->mrn }}
Phone
{{ $patient->phone ?? $patient->user->phone ?? '-' }}
Address
{{ $patient->address ?? '-' }}
@endsection