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

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

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


<?php $__env->startSection('content'); ?>
<img style="max-width: 30%;display: block; margin-top: -3rem; margin-left: auto; margin-right: auto;" src="/img/Prestige_Logo.jpg" />
 <a  href="/management-dashboard"><button style="    margin-left: 32rem;
                                          margin-top: 2rem;
                                          padding-bottom: 0.01rem;
                                          padding-left: 0rem;"><i style="font-size: 1rem;" class="fa fa-arrow-circle-left" aria-hidden="true"></i> Back</button></a>



<div style="width: 550px !important;border: solid #009ddc 7px;background-image: url(/img/da-background.jpg);" class="login">
			<div class="app-title">
				<h1>Support</h1>
				<p>Sumit your query here. This will go straight through to our support team</p>
			</div>
			<?php echo Form::open(['url' => '/query-system', '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 style="margin-left:auto; margin-right:auto; display:block;" type="submit">Submit</button>

</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(); ?>