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

User Details

User Information
Username {{ $user->username }}
Email {{ $user->email }}
First Name {{ $user->first_name ?? 'N/A' }}
Last Name {{ $user->last_name ?? 'N/A' }}
Country {{ $user->country->name ?? 'N/A' }}
QR Code @if($user->qr_code) Profile Image @else No Image @endif
Profile Image @if($user->profile_picture) Profile Image @else No Image @endif
Created At {{ $user->created_at->format('d M Y, H:i A') }}
Updated At {{ $user->updated_at->format('d M Y, H:i A') }}
Back to Users
@endsection