@extends('layouts.app') @section('title', 'Profile') @section('show-header', true) @section('page-title', 'My Profile') @section('content')
{{-- Avatar & Stats --}}

{{ $user->name }}

{{ $user->phone }}

{{-- Stats --}}

{{ $user->total_matches }}

Matches

{{ $user->total_kills }}

Kills

{{ $user->total_wins }}

Wins

৳{{ number_format($user->winning) }}

Earned

{{-- Edit Profile --}}

Edit Profile

@csrf
@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
{{-- Change Password --}}

Change Password

@csrf
@error('current_password')

{{ $message }}

@enderror
{{-- Referral Section --}}

🎁 Referral Program

Invite friends and earn bonus on each signup!

Your Referral Code

{{ $user->referral_code }}

{{ $user->referrals->count() }}

People Referred

৳{{ number_format($referralEarnings) }}

Bonus Earned

{{-- Logout --}}
@csrf
@endsection @push('scripts') @endpush