{!!Form::model($model, ['class'=>'form-horizontal','method'=>'get'])!!}
{!! Form::label('customer_id', App\Language::trans('Customer'), ['class'=>'control-label col-md-2']) !!}
{!! Form::select('customer_id', App\Customer::combobox(), null, ['class'=>'form-control']) !!} {!!$errors->first('customer_id', '')!!}
{!! Form::label('sort_by', App\Language::trans('Sort By'), ['class'=>'control-label col-md-6']) !!}
{!! Form::select('sort_by', App\MembershipModel\ARPaymentReceived::sort_by_combobox(), null, ['class'=>'form-control']) !!} {!!$errors->first('sort_by', '')!!}
{!! Form::label('payment_method', App\Language::trans('Payment Method'), ['class'=>'control-label col-md-4']) !!}
{!! Form::select('payment_method', App\Setting::payment_method(), null, ['class'=>'form-control','autofocus','required']) !!} {!!$errors->first('payment_method', '')!!}
{!! Form::label('ar_invoice_id', App\Language::trans('Document Date From'), ['class'=>'control-label col-md-2']) !!}
{!! Form::text('date_started', null, ['class'=>'form-control']) !!} {!!$errors->first('date_started', '')!!}
{!! Form::label('date_ended', App\Language::trans('To'), ['class'=>'control-label col-md-4']) !!}
{!! Form::text('date_ended', null, ['class'=>'form-control']) !!} {!!$errors->first('date_ended', '')!!}