{!! Form::label('status', ' ' . __('models/invoices.fields.status', [], 'ar').':', [], false) !!}
{!! Form::select('status', __('models/invoices.status', [], 'ar'), null, ['placeholder' => 'اختر الحالة', 'class' => 'form-control select2', 'required', 'id' => 'status', 'style' => 'width: 100%;']) !!}
{!! Form::label('payment_method', ' ' . __('models/invoices.fields.payment_method', [], 'ar').':', [], false) !!}
{!! Form::select('payment_method', __('models/invoices.payment_method', [], 'ar'), null, ['placeholder' => 'اختر وسيلة الدفع', 'class' => 'form-control select2', 'id' => 'payment_method', 'style' => 'width: 100%;']) !!}
{!! Form::label('representative_id', ' ' . __('models/invoices.fields.representative_id', [], 'ar') . ':', [], false) !!}
{!! Form::select('representative_id', $representatives, null, [ 'placeholder' => 'اختر المندوب (اختياري)', 'class' => 'form-control select2', 'id' => 'representative_id', 'style' => 'width: 100%;']) !!}
{!! Form::label('reference_number', ' ' . __('models/invoices.fields.reference_number', [], 'ar').':', [], false) !!}
{!! Form::text('reference_number', null, ['class' => 'form-control', 'id' => 'reference_number', 'placeholder' => 'أدخل الرقم المرجعي للحوالة']) !!}
{!! Form::label('notes', ' ' . __('models/invoices.fields.notes', [], 'ar').':', [], false) !!}
{!! Form::textarea('notes', null, ['class' => 'form-control', 'id' => 'notes', 'rows' => 3, 'placeholder' => 'إضافة أي ملاحظات أخرى...']) !!}