{!! Form::open([ 'url' => action([App\Http\Controllers\SellController::class, 'payMulti']), 'method' => 'post', ]) !!}

@lang('lang_v1.account')

@if(!empty($accounts))
{!! Form::label("account_id" , __('lang_v1.payment_account') . ':') !!}
{!! Form::select("account_id", $accounts,null , ['class' => 'form-control select2', 'id' => "account_id", 'style' => 'width:100%;']); !!}
@endif @foreach ($transaction_ids as $id) @endforeach
@lang('home.total_sell'): @format_currency($final_total)
{!! Form::close() !!}