@extends('master') @section('title') Credit Application Quote @stop @section('styles') @stop @section('content') @include('partials.nav')

Credit Application – Request Quote


{{ Form::open(['url' => '/credit-application-quote', 'method' => 'POST', 'data-abide' => '','files' => true]) }}
@if($errors->first('company_name')) {{ Form::text('company_name', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }} @else {{ Form::text('company_name', '', ['class' => 'formFieldGrey']) }} @endif
@if($errors->first('termsOfPayment')) {{ Form::text('termsOfPayment', '', ['class' => 'formFieldGrey', 'placeholder' => '(i.e. 30 days from statement, or invoice, or delivery?)', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }} @else {{ Form::text('termsOfPayment', '', ['class' => 'formFieldGrey','placeholder' => '(i.e. 30 days from statement, or invoice, or delivery?)']) }} @endif
@if($errors->first('orders')) {{ Form::text('orders', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }} @else {{ Form::text('orders', '', ['class' => 'formFieldGrey']) }} @endif
@if($errors->first('quotations')) {{ Form::radio('quotations', 'YES', false) }} Yes {{ Form::radio('quotations', 'NO', false) }} No @else @endif
@if($errors->first('assemble'))
@if($errors->first('goods')) {{ Form::radio('goods', 'YES', false) }} Yes {{ Form::radio('goods', 'NO', false) }} No @else {{ Form::radio('goods', 'YES', false) }} Yes {{ Form::radio('goods', 'NO', false) }} No @endif

@if($errors->first('buyFromSupplier')) {{ Form::radio('buyFromSupplier', 'YES', false) }} Yes {{ Form::radio('buyFromSupplier', 'NO', false) }} No @else {{ Form::radio('buyFromSupplier', 'YES', false) }} Yes {{ Form::radio('buyFromSupplier', 'NO', false) }} No @endif
@if($errors->first('agreement')) {{ Form::radio('agreement', 'YES', false) }} Yes {{ Form::radio('agreement', 'NO', false) }} No @else {{ Form::radio('agreement', 'YES', false) }} Yes {{ Form::radio('agreement', 'NO', false) }} No @endif
@if($errors->first('warrantee')) {{ Form::radio('warrantee', 'YES', false) }} Yes {{ Form::radio('warrantee', 'NO', false) }} No @else {{ Form::radio('warrantee', 'YES', false) }} Yes {{ Form::radio('warrantee', 'NO', false) }} No @endif

@if($errors->first('instructions')) {{ Form::radio('instructions', 'YES', false) }} Yes {{ Form::radio('instructions', 'NO', false) }} No @else {{ Form::radio('instructions', 'YES', false) }} Yes {{ Form::radio('instructions', 'NO', false) }} No @endif
@if($errors->first('interest')) {{ Form::radio('interest', 'YES', false) }} Yes {{ Form::radio('interest', 'NO', false) }} No @else {{ Form::radio('interest', 'YES', false) }} Yes {{ Form::radio('interest', 'NO', false) }} No @endif

@if($errors->first('determinePurchasePrice')) {{ Form::text('determinePurchasePrice', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }} @else {{ Form::text('determinePurchasePrice', '', ['class' => 'formFieldGrey']) }} @endif
@if($errors->first('dateInterest')) {{ Form::text('dateInterest', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }} @else {{ Form::text('dateInterest', '', ['class' => 'formFieldGrey']) }} @endif
@if($errors->first('interestCharge')) {{ Form::text('interestCharge', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }} @else {{ Form::text('interestCharge', '', ['class' => 'formFieldGrey']) }} @endif
@if($errors->first('suretyship')) {{ Form::radio('suretyship', 'YES', false) }} Yes {{ Form::radio('suretyship', 'NO', false) }} No @else {{ Form::radio('suretyship', 'YES', false) }} Yes {{ Form::radio('suretyship', 'NO', false) }} No @endif

@if($errors->first('returnPolicy')) {{ Form::radio('returnPolicy', 'YES', false) }} Yes {{ Form::radio('returnPolicy', 'NO', false) }} No @else {{ Form::radio('returnPolicy', 'YES', false) }} Yes {{ Form::radio('returnPolicy', 'NO', false) }} No @endif
{{ Form::text('returnPolicyDescription') }}
{{ Form::file('creditApplication') }}

@if($errors->first('testCertificate')) {{ Form::radio('testCertificate', 'YES', false) }} Yes {{ Form::radio('testCertificate', 'NO', false) }} No @else {{ Form::radio('testCertificate', 'YES', false) }} Yes {{ Form::radio('testCertificate', 'NO', false) }} No @endif
@if($errors->first('dangerous')) {{ Form::radio('dangerous', 'YES', false) }} Yes {{ Form::radio('dangerous', 'NO', false) }} No @else {{ Form::radio('dangerous', 'YES', false) }} Yes {{ Form::radio('dangerous', 'NO', false) }} No @endif

@if($errors->first('termsInvoice')) {{ Form::textarea('termsInvoice', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }} @else {{ Form::textarea('termsInvoice', '', ['class' => 'formFieldGrey']) }} @endif
@if($errors->first('termsDeliveryNote')) {{ Form::textarea('termsDeliveryNote', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }} @else {{ Form::textarea('termsDeliveryNote', '', ['class' => 'formFieldGrey']) }} @endif
@if($errors->first('specialTerms')) {{ Form::textarea('specialTerms', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }} @else {{ Form::textarea('specialTerms', '', ['class' => 'formFieldGrey']) }} @endif
{{ Form:: close() }} @include('partials.footer') @stop