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

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

<?php $__env->stopSection(); ?>


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

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

<hr style="margin-top: 10px;">
        <h1>Support</h1>
        <p>Get one of our representatives to visit or assist in training, quotations and negotiations. </p>
    </div>
    <?php echo Form::open(['url' => '/support', 'method' => 'POST', 'data-abide' => '']); ?>

    <div class="row">
        <div class="large-6 columns">
            <label>Name</label>
            <?php echo Form::text('name'); ?>

        </div>
        <div class="large-6 columns">
            <label>Email</label>
            <?php echo Form::email('email'); ?>

        </div>
    </div>

    <div class="row">
        <div class="large-12 columns">
             <label>Write your query here</label>
             <?php echo Form::textarea('query'); ?>

        </div>
    </div>
    <button class="myButton" type="submit">Submit</button>

<?php $__env->stopSection(); ?>

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

<?php $__env->stopSection(); ?>


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