{!! 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('subject', 'Project Subject:') !!}
{!! Form::text('subject', old('subject'), [
'class' => $errors->has('subject') ? 'form-control is-invalid' : 'form-control',
'id' => 'subject'
]) !!}
@if ($errors->has('subject'))
{{ $errors->first('subject') }}
@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('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