{!! Form::label('customer_id', trans('app.form.search_customer').'*', ['class' => 'with-help']) !!} {!! Form::select('customer_id', isset($customer) ? [ $customer->id => $customer->name . ' | ' . $customer->email ] : [], isset($customer) ? $customer->id : Null, ['class' => 'form-control searchCustomer', 'style' =>'width: 100%', 'required']) !!}