@extends('layouts.user') @section('title', __('user.profile_title')) @section('content')
{{ $user->UserName }}
{{ __('user.member_since') }} {{ $user->CreateTime ? $user->CreateTime->format('d/m/Y') : 'N/A' }}
{{ __('user.username_label') }}
{{ $user->UserName }}
{{ __('user.email_label') }}
{{ $user->Email ?: __('user.not_updated') }}
{{ __('user.phone_number') }}
{{ $user->Phone ?: __('user.not_updated') }}
{{ __('user.account_status') }}
{{ __('user.active') }}
@if(isset($gameStats))

Thống kê game

Tổng nhân vật
{{ $gameStats['total_characters'] ?? 0 }}
Level cao nhất
{{ $gameStats['highest_level'] ?? 0 }}
Tổng coins đã nạp
{{ number_format($gameStats['total_recharged'] ?? 0) }}
Lần đăng nhập cuối
{{ $user->LastLoginTime ? $user->LastLoginTime->format('d/m/Y H:i') : 'N/A' }}
@endif
Trang chủ Nạp tiền Rút tiền Hồ sơ Lịch sử
@endsection