@extends('layouts.admin') @section('content')
| Username | {{ $user->username }} |
|---|---|
| {{ $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 |
@if($user->profile_picture)
|
| Created At | {{ $user->created_at->format('d M Y, H:i A') }} |
| Updated At | {{ $user->updated_at->format('d M Y, H:i A') }} |