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

My Profile

This is how you appear to students in their assessment history.

@if($errors->any())
@endif
@csrf @method('PUT')
{{-- ── Identity + stats ───────────────────────────────────────── --}}
@if($profile?->photo_path) @else {{ strtoupper(mb_substr($user->name, 0, 1)) }} @endif
{{ $user->name }}

{{ $profile?->position ?: 'Clinical Instructor' }}

@if($profile?->department)

{{ $profile->department }}

@endif @error('photo')
{{ $message }}
@enderror
JPG or PNG, max 2 MB.
My activity
  • Assigned students {{ $stats['students'] }}
  • Assessments given {{ $stats['assessments'] }}
  • Students assessed {{ $stats['students_assessed'] }}
  • Reports checked {{ $stats['reports'] }}
{{-- ── Details ────────────────────────────────────────────────── --}}
Personal information
Managed by the administrator.
@error('phone')
{{ $message }}
@enderror
@error('position')
{{ $message }}
@enderror
Clinical details
@error('department')
{{ $message }}
@enderror
Visible to students in their assessment history.
0/500
@error('bio')
{{ $message }}
@enderror
@push('scripts') @endpush @endsection