{!! Form::label('name', __('models/quotations.fields.name') . ':') !!} {!! Form::text('name', null, ['class' => $errors->has('name') ? 'form-control is-invalid' : 'form-control']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::label('quotation_type_id', __('models/quotations.fields.quotation_type_id') . ':') !!}
{!! Form::select('quotation_type_id', $typeItems, null, [ 'class' => $errors->has('quotation_type_id') ? 'form-control is-invalid' : 'form-control', 'id' => 'quotation_type_id', ]) !!} @if ($errors->has('quotation_type_id')) {{ $errors->first('quotation_type_id') }} @endif
@section('css') @parent @endsection
{!! Form::label('company_id', __('models/quotations.fields.company_id') . ':') !!}
{!! Form::select('company_id', $companyItems, null, [ 'class' => $errors->has('company_id') ? 'form-control is-invalid' : 'form-control', 'id' => 'company_id', ]) !!} @if ($errors->has('company_id')) {{ $errors->first('company_id') }} @endif
@section('scripts') @parent @endsection
{!! Form::label('quotation_company', __('models/quotations.fields.quotation_company') . ':') !!}
{!! Form::select('quotation_company', $typeCompany, null, [ 'class' => $errors->has('quotation_company') ? 'form-control is-invalid' : 'form-control', ]) !!} @if ($errors->has('quotation_company')) {{ $errors->first('quotation_company') }} @endif
{!! Form::label('ref_no', __('models/quotations.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('amount', __('models/quotations.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('date', __('models/quotations.fields.date') . ':') !!}
{!! Form::text('date', null, [ 'class' => $errors->has('date') ? 'form-control is-invalid' : 'form-control', 'id' => 'date', ]) !!} @if ($errors->has('date')) {{ $errors->first('date') }} @endif
@section('scripts') @parent @endsection
{!! Form::label('subject', __('models/quotations.fields.subject') . ':') !!} {!! Form::text('subject', null, [ 'class' => $errors->has('subject') ? 'form-control is-invalid' : 'form-control', ]) !!} @if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
{!! Form::label('location', __('models/quotations.fields.location') . ':') !!} {!! Form::text('location', null, ['class' => 'form-control']) !!}
{!! Form::file('file', ['class' => 'custom-file-input']) !!} {!! Form::label('file', __('models/quotations.fields.file') . ':', ['class' => 'custom-file-label']) !!}
{!! Form::label('payment', __('models/quotations.fields.payment').':') !!} {!! Form::textarea('payment', '
  • 100% Advance payment (Non- Refundable) -TRN Number: (100317831400003)
  • Payment/Cheque should be issued on or before 7 working days of each invoice generated.
  • # Validity : 7 days
  • # Delivery date: It will be after the advanced payment, subjected to the stock availability.
' , ['class' => 'form-control summer-note']) !!}
@section('scripts') @parent @endsection
{!! Form::label('exclusion', __('models/quotations.fields.exclusion').':') !!} {!! Form::textarea('exclusion', '
  • # Government fees, any new requirements from Civil Defense or regulations, Land Lord, Client, Consultant, Fire rated doors, gate pass, Voice evacuation, kitchen hood, water tank. LPG Electricity, Civil works & Manhole works.
  • #Any new requirements not mentioned in the above BOQ.
  • #This is not the final quote as some further maintenance might be required after trouble shooting checks.
  • # Any third-party charges.

We hope our offer is in line with your requirements and we looking forward to hear from you soon. For any details, kindly contact undersigned

Thanks, and Regards,

', ['class' => 'form-control summer-note']) !!}
@section('scripts') @parent @endsection @include('quotations.add_products',[ 'quotation' => isset($quotation) ? $quotation : null ])
{!! Form::submit(__('crud.save'), ['class' => 'btn btn-danger btn-flat btn-lg']) !!} @lang('crud.cancel')
@section('scripts') @parent {{-- Add company model --}} {{-- Add Quotation Type model --}} @endsection