@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:
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{-- ── Profile Card ── --}}
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->role }}
Personal Information
{{-- ── 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