{!! Form::label('ref_no', __('models/lpoins.fields.ref_no').':') !!} {!! Form::text('ref_no', null, ['class' => ($errors->has('ref_no')) ? 'form-control is-invalid' : 'form-control']) !!} @if ($errors->has('ref_no')) {{ $errors->first('ref_no') }} @endif
{!! Form::label('quotation_id', __('models/lpoins.fields.quotation_id').':') !!} {!! Form::select('quotation_id', $quotationItems, null, ['class' => ($errors->has('quotation_id')) ? 'form-control is-invalid' : 'form-control' ,'id'=>'quotation_id']) !!} @if ($errors->has('quotation_id')) {{ $errors->first('quotation_id') }} @endif
{!! Form::label('date_issue', __('models/lpoins.fields.date_issue').':') !!}
{!! Form::text('date_issue', null, ['class' => ($errors->has('date_issue')) ? 'form-control is-invalid' : 'form-control' ,'id'=>'date_issue']) !!} @if ($errors->has('date_issue')) {{ $errors->first('date_issue') }} @endif
{{--
{!! Form::label('amount', __('models/lpoins.fields.amount').':') !!} {!! Form::text('amount', null, ['class' => ($errors->has('amount')) ? 'form-control is-invalid' : 'form-control']) !!} @if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
--}}
{!! Form::label('file','File:') !!}
{!! Form::file('files[]',['class' => 'custom-file-input', 'multiple' => true]) !!} {!! Form::label('file', __('models/lpoouts.fields.file').':' , ['class' => 'custom-file-label']) !!}
{!! Form::label('civil_defence_fee', __('models/lpoins.fields.civil_defence_fee').':') !!} {!! Form::text('civil_defence_fee', null, ['class' => ($errors->has('civil_defence_fee')) ? 'form-control is-invalid' : 'form-control']) !!} @if ($errors->has('civil_defence_fee')) {{ $errors->first('civil_defence_fee') }} @endif
{!! Form::label('government_fee', __('models/lpoins.fields.government_fee').':') !!} {!! Form::text('government_fee', null, ['class' => ($errors->has('government_fee')) ? 'form-control is-invalid' : 'form-control']) !!} @if ($errors->has('government_fee')) {{ $errors->first('government_fee') }} @endif
{!! Form::label('adjustment_fee', __('models/lpoins.fields.adjustment_fee').':') !!} {!! Form::text('adjustment_fee', null, ['class' => ($errors->has('adjustment_fee')) ? 'form-control is-invalid' : 'form-control']) !!} @if ($errors->has('adjustment_fee')) {{ $errors->first('adjustment_fee') }} @endif
{!! Form::label('payment_terms', __('models/lpoins.fields.payment_terms').':') !!} {!! Form::text('payment_terms', null, ['class' => ($errors->has('payment_terms')) ? 'form-control is-invalid' : 'form-control']) !!} @if ($errors->has('payment_terms')) {{ $errors->first('payment_terms') }} @endif
@section('scripts') @parent @if (!empty($isCreate) && $isCreate) @endif @endsection
{!! Form::submit(__('crud.save'), ['class' => 'btn btn-danger btn-flat btn-lg']) !!} @lang('crud.cancel')