{!! Form::open([ 'url' => action('ExchangeController@loadExchangeScreen'), 'method' => 'post', 'id' => 'add_exchange_modal_form', 'files' => true, ]) !!}

Create Exchange

{!! Form::label('exchange_transaction_id', 'Select Invoice:*') !!} {!! Form::select('exchange_transaction_id', $invoices, null, [ 'class' => 'form-control select2', 'id' => 'exchange_dropdown', 'placeholder' => __('messages.please_select'), 'required', ]) !!}
{!! Form::close() !!}