@extends('dashboard.admin.layouts.app') @section('content')

{{ $title }}

Select Users to Add as Participants
@if ($eligibleUsers->count() > 0)
@csrf
Note: Only users with approved copy trade requests for this trader and connected wallets are shown.
If enabled, the trade's initial amount (${{ formatAmount($trade->initial_amount) }}) will be deducted from each selected participant's wallet.
@foreach ($eligibleUsers as $user) @endforeach
User Email Wallet Address Wallet Balance
{{ $user->name }} {{ $user->email }} {{ Str::limit($user->wallet_address, 25) }} ${{ formatAmount(totalBalance($user)) }}
Cancel
@else
No Eligible Users Found

There are no users with approved copy trade requests and connected wallets who are not already participants in this trade.

Back to Trade
@endif
@endsection