{!! Form::open(['url' => action([\App\Http\Controllers\AccountReportsController::class, 'postLinkAccount']), 'method' => 'post', 'id' => 'link_account_form' ]) !!}
{!! Form::hidden('transaction_payment_id', $payment->id); !!}
{!! Form::label('account_id', __( 'account.account' ) .":") !!}
{!! Form::select('account_id', $accounts, $payment->account_id, ['class' => 'form-control', 'required']); !!}
{!! Form::close() !!}