@if($errors->first('goods'))
Do you manufacture goods?
{{ Form::radio('goods', 'YES', false) }}
Yes
{{ Form::radio('goods', 'NO', false) }}
No
@else
Do you manufacture goods?
{{ Form::radio('goods', 'YES', false) }}
Yes
{{ Form::radio('goods', 'NO', false) }}
No
@endif
@if($errors->first('buyFromSupplier'))
Do you buy your product from a Supplier?
{{ Form::radio('buyFromSupplier', 'YES', false) }}
Yes
{{ Form::radio('buyFromSupplier', 'NO', false) }}
No
@else
Do you buy your product from a Supplier?
{{ Form::radio('buyFromSupplier', 'YES', false) }}
Yes
{{ Form::radio('buyFromSupplier', 'NO', false) }}
No
@endif
@if($errors->first('agreement'))
Do you have an agreement with your supplier?
{{ Form::radio('agreement', 'YES', false) }}
Yes
{{ Form::radio('agreement', 'NO', false) }}
No
@else
Do you have an agreement with your supplier?
{{ Form::radio('agreement', 'YES', false) }}
Yes
{{ Form::radio('agreement', 'NO', false) }}
No
@endif
@if($errors->first('warrantee'))
Does the product carry a warrantee?
{{ Form::radio('warrantee', 'YES', false) }}
Yes
{{ Form::radio('warrantee', 'NO', false) }}
No
@else
Does the product carry a warrantee?
{{ Form::radio('warrantee', 'YES', false) }}
Yes
{{ Form::radio('warrantee', 'NO', false) }}
No
@endif
@if($errors->first('instructions'))
Does the product come with instructions, labels, or a manual?
{{ Form::radio('instructions', 'YES', false) }}
Yes
{{ Form::radio('instructions', 'NO', false) }}
No
@else
Does the product come with instructions, labels, or a manual?
{{ Form::radio('instructions', 'YES', false) }}
Yes
{{ Form::radio('instructions', 'NO', false) }}
No
@endif
@if($errors->first('interest'))
Do you charge interest?
{{ Form::radio('interest', 'YES', false) }}
Yes
{{ Form::radio('interest', 'NO', false) }}
No
@else
Do you charge interest?
{{ Form::radio('interest', 'YES', false) }}
Yes
{{ Form::radio('interest', 'NO', false) }}
No
@endif
@if($errors->first('determinePurchasePrice'))
How do you determine the purchase price? *
{{ Form::text('determinePurchasePrice', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }}
@else
How do you determine the purchase price? *
{{ Form::text('determinePurchasePrice', '', ['class' => 'formFieldGrey']) }}
@endif
@if($errors->first('dateInterest'))
From which date do you charge interest? *
{{ Form::text('dateInterest', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }}
@else
From which date do you charge interest? *
{{ Form::text('dateInterest', '', ['class' => 'formFieldGrey']) }}
@endif
@if($errors->first('interestCharge'))
What % interest do you (or do you want to) charge? *
{{ Form::text('interestCharge', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }}
@else
What % interest do you (or do you want to) charge? *
{{ Form::text('interestCharge', '', ['class' => 'formFieldGrey']) }}
@endif
@if($errors->first('suretyship'))
Would you like your customer to sign a suretyship when completing your credit agreement?
{{ Form::radio('suretyship', 'YES', false) }}
Yes
{{ Form::radio('suretyship', 'NO', false) }}
No
@else
Would you like your customer to sign a suretyship when completing your credit agreement?
{{ Form::radio('suretyship', 'YES', false) }}
Yes
{{ Form::radio('suretyship', 'NO', false) }}
No
@endif
@if($errors->first('returnPolicy'))
Do you have a return policy?
{{ Form::radio('returnPolicy', 'YES', false) }}
Yes
{{ Form::radio('returnPolicy', 'NO', false) }}
No
@else
Do you have a return policy?
{{ Form::radio('returnPolicy', 'YES', false) }}
Yes
{{ Form::radio('returnPolicy', 'NO', false) }}
No
@endif
If you have a return policy, What is it?
{{ Form::text('returnPolicyDescription') }}
Company’s current credit application
{{ Form::file('creditApplication') }}
@if($errors->first('testCertificate'))
Does your product come with a test certificate?
{{ Form::radio('testCertificate', 'YES', false) }}
Yes
{{ Form::radio('testCertificate', 'NO', false) }}
No
@else
Does your product come with a test certificate?
{{ Form::radio('testCertificate', 'YES', false) }}
Yes
{{ Form::radio('testCertificate', 'NO', false) }}
No
@endif
@if($errors->first('dangerous'))
Is your product dangerous?
{{ Form::radio('dangerous', 'YES', false) }}
Yes
{{ Form::radio('dangerous', 'NO', false) }}
No
@else
Is your product dangerous?
{{ Form::radio('dangerous', 'YES', false) }}
Yes
{{ Form::radio('dangerous', 'NO', false) }}
No
@endif
@if($errors->first('termsInvoice'))
What are the terms printed on your invoice? *
{{ Form::textarea('termsInvoice', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }}
@else
What are the terms printed on your invoice? *
{{ Form::textarea('termsInvoice', '', ['class' => 'formFieldGrey']) }}
@endif
@if($errors->first('termsDeliveryNote'))
What are the terms printed on your delivery note? *
{{ Form::textarea('termsDeliveryNote', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }}
@else
What are the terms printed on your delivery note? *
{{ Form::textarea('termsDeliveryNote', '', ['class' => 'formFieldGrey']) }}
@endif
@if($errors->first('specialTerms'))
Anything else you want to include? Special terms.
{{ Form::textarea('specialTerms', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]) }}
@else
Anything else you want to include? Special terms. *
{{ Form::textarea('specialTerms', '', ['class' => 'formFieldGrey']) }}
@endif