@extends('layouts.app') @section('content')

My Profile

@if($userInfo)
User Avatar

{{ $userInfo['firstname'] ?? 'N/A' }} {{ $userInfo['lastname'] ?? 'N/A' }}

My Information
Username:
{{ $userInfo['username'] ?? 'N/A' }}
Access Role
Role:
{{ $this->getRoleLabel($userInfo['role'] ?? null) }}
@else

Loading profile data...

@endif
@endsection