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

User Profile: {{ $item->name }}

@if($item->image) @else
{{ strtoupper(substr($item->name, 0, 1)) }}
@endif

{{ $item->name }}

{{ $item->email }}

@if($item->is_active) Active Account @else Inactive @endif Bonus: {{ number_format($item->bonus_balance ?? 0, 2) }} pts

{{ $item->phone ?: 'Not provided' }}

{{ $item->date_of_birth ? $item->date_of_birth->format('F d, Y') : 'Not set' }} @if($item->date_of_birth && $item->date_of_birth->isBirthday()) 🎂 @endif

{{ $item->address ?: 'Not provided' }}

{{ $item->created_at->format('F d, Y') }}

@endsection