{!! Form::open(['url' => action('TransactionController@store'), 'method' => 'post',
'id' => 'transaction_add_form','class' => 'transaction_form', 'files' => true ]) !!}
{!! Form::label('contact_id', __('Supliers') . ':*') !!}
{!! Form::select('contact_id', $suppliers, isset($transaction) ? $transaction->contact_id : '', ['class' => 'form-input', 'id'=>'seachable-select',
'placeholder' => __('Please Select One'),
'required']); !!}
{!! Form::close() !!}