<?php $__env->startSection('title'); ?>
   Guarantees
<?php $__env->stopSection(); ?>

<?php $__env->startSection('styles'); ?>
 <style>

input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="color"], textarea {
    width: 220%;
}
 </style>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>


<?php echo $__env->make('partials.nav', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<div>
<h1>Guarantees</h1>

<hr style="margin-top: 10px;">

<?php echo Form::open(['url' => '/guarantees', 'method' => 'POST', 'data-abide' => '','files' => true]); ?>



<div class="row">
     <div class="large-6 columns">
            <label style="text-align: initial;"><input id="fuel" type="checkbox" name="options[]" value="Fuel Guarantee"><label class="" for="fuel">Fuel Guarantee</label><br></label>
            <label style="text-align: initial;"><input id="logistics" type="checkbox" name="options[]" value="Logistics Guarantee"><label class="" for="logistics">Logistics Guarantee</label><br></label>
            <label style="text-align: initial;"><input id="construction" type="checkbox" name="options[]" value="Construction Guarantee"><label class="" for="construction">Construction Guarantee</label><br></label>
            <label style="text-align: initial;"><input id="energy" type="checkbox" name="options[]" value="Energy Guarantee"><label class="" for="energy">Energy Guarantee</label><br></label>
            <label style="text-align: initial;"><input id="mining" type="checkbox" name="options[]" value="Mining Guarantee"><label class="" for="mining">Mining Guarantee</label><br></label>
            <label style="text-align: initial;"><input id="specialisedMining" type="checkbox" name="options[]" value="Specialised Mining Guarantee"><label class="" for="specialisedMining">Specialised Mining guarantee</label><br></label>
     </div>
</div>

<div class="row">
    <div class="large-12 columns">
         <!-- required -->
        <?php if($errors->first('overview')): ?>
            <label class="red" style="text-align: left;">Please give us a brief overview of what you require and why, and one of our consultants will contact you *</label>
            <?php echo Form::textarea('overview', '', ['class' => 'formFieldGrey', 'style'=>"border: 2px solid rgba(255, 0, 0, 0.3)"]); ?>

        <?php else: ?>
            <label style="text-align: left;">Please give us a brief overview of what you require and why, and one of our consultants will contact you *</label>
            <?php echo Form::textarea('overview', '', ['class' => 'formFieldGrey']); ?>

        <?php endif; ?>
    </div>
</div>

<div class="row">
    <div class="large-12 columns">
        <button class="myButton" type="submit">Click to Enquire</button>
    </div>
</div>

<?php echo Form:: close(); ?>


<?php echo $__env->make('partials.footer', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
</div>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>