Team Owner Panel

@csrf

Welcome, {{ $admin->full_name ?? $admin->user_name }} ({{ $admin->email }})

@if (session('error'))
{{ session('error') }}
@endif @if ($teams->isEmpty())
No teams are linked to your account yet.
@else
@foreach ($teams as $team)

{{ $team->team_name }}

{{ $team->short_name }}
League{{ $team->league?->name ?? '—' }}
Budget{{ $team->budget_currency }} {{ number_format((float) $team->total_budget, 2) }}
Remaining{{ $team->budget_currency }} {{ number_format((float) $team->remaining_budget, 2) }}
{{ $team->registrationStatusLabel() }} @if ($team->league?->isLive()) Enter Auction Room @endif
@endforeach
@endif