<?php $__env->startSection('title'); ?>
   Insurance Quote
<?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(); ?>

<h1>Request an Insurance Quote</h1>

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

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



<div class="row">
     <div class="large-6 columns">
          <label class="" for="business_name">Company Name <small class="red"><?php echo $errors->first('company_name'); ?></small>
                 <?php echo Form::text('company_name', '', ['class' => '']); ?>

          </label>
     </div>
     <div class="large-6 columns">
          <label class="" for="registration_number">Registration Number <small class="red"><?php echo $errors->first('registration_number'); ?></small>
                 <?php echo Form::text('registration_number', '', ['class' => '']); ?>

          </label>
     </div>
</div>


<div class="row">
     <div class="large-6 columns">
          <label class="" for="industry">Contact Name <small class="red"><?php echo $errors->first('contact_name'); ?></small>
                 <?php echo Form::text('contact_name', '', ['class' => '']); ?>

          </label>
     </div>
     <div class="large-6 columns">
          <label class="" for="insured_book_amount">Designation <small class="red"><?php echo $errors->first('designation'); ?></small>
                 <?php echo Form::text('designation', '', ['class' => '']); ?>

          </label>
     </div>
</div>

<div class="row">
     <div class="large-6 columns">
          <label class="" for="current_overdue_amount">Contact Number <small class="red"><?php echo $errors->first('contact_number'); ?></small>
                 <?php echo Form::text('contact_number', '', ['class' => '']); ?>

          </label>
     </div>
     <div class="large-6 columns">
          <label class="" for="percentage_overdue">Email<small class="red"><?php echo $errors->first('email'); ?></small>
                 <?php echo Form::email('email', '', ['class' => '']); ?>

          </label>
     </div>
</div>

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

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


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

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