@extends('layouts.app') @section('title', 'My Profile — CareerPath') @push('styles') @endpush @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
Please fix the following:
@endif {{-- ── Profile Card ── --}}
{{ strtoupper(substr($user->name, 0, 1)) }}

{{ $user->name }}

{{ $user->role }}
Personal Information
@csrf

Change Password

Leave blank to keep your current password.

{{-- ── Account Info Card ── --}}
Account Details
Member Since
{{ $user->created_at->format('d M Y') }}
Account Role
{{ $user->role }}
Email Verified
@if($user->email_verified_at) Verified @else Not verified @endif
Last Updated
{{ $user->updated_at->format('d M Y') }}
@endsection