{!! Form::label('invoice_no', __('Invoice No').':') !!}
{!! Form::text('invoice_no', null, ['class' => 'form-control', 'id' => 'invoice_no']); !!}
{!! Form::label('return_type', __('Return Type').':*') !!}
{!! Form::select('return_type', ['return' => 'Return', 'exchange' => 'Exchange', 'damage' => 'Damage', 'replacement' => 'Replacement'], null, ['class' => 'form-control', 'placeholder' => __('messages.please_select'), 'required',
'id' => 'select_return_type']); !!}