@extends('layouts.app') @section('title', 'Dashboard') @section('content')

Trading Dashboard

Welcome back, {{ auth()->user()->name }}. Manage your portfolio and trades.

Portfolio Value

${{ number_format(auth()->user()->balance, 2) }}

Account Status

{{ ucfirst(auth()->user()->status) }}

Username

{{ auth()->user()->username }}

Member Since

{{ auth()->user()->created_at->format('M Y') }}

Deposit funds or contact support to start trading perpetuals with up to 30x leverage.

Explore platform features
@endsection