@extends('layouts.user') @section('title') {{ $profile['name'] }} · Pilots @endsection @section('content') {{-- modal CSS lives here --}}
{{-- Slim banner --}}
@include('partials.pilot.banner')
{{-- Sidebar --}}
@include('partials.pilot.sidebar')
{{-- Main content --}}
{{-- Page header (back link + session pill) --}}
Pilots
Checking session…
{{-- Hero --}} @include('partials.pilot.profile-hero', [ 'profile' => $profile, 'follow' => $follow, 'isFollowing' => $isFollowing, ]) {{-- 30-day P&L chart --}} @include('partials.pilot.profile-chart', ['profile' => $profile]) {{-- Your activity (only when following) --}} @if($isFollowing && $activity) @include('partials.pilot.profile-activity', [ 'activity' => $activity, 'profile' => $profile, ]) @endif {{-- About panel --}} @if($profile['bio'])

About this pilot

{{ $profile['bio'] }}

@endif {{-- Recent trades --}} @include('partials.pilot.profile-trades', ['trades' => $profile['recent_trades']])
{{-- Modals (reused from listing + profile-specific follow) --}} @include('partials.pilot.modal-topup', ['mainBalance' => $mainBalance]) @include('partials.pilot.modal-unfollow') @include('partials.pilot.modal-follow', ['mainBalance' => $mainBalance]) @endsection