 
<?php $__env->startSection('content'); ?>
			<div class="row">
                <div class="col-lg-12">
                	<?php if(session('status')): ?>
                	<br>
					<div class="alert alert-success">
						<?php echo e(session('status')); ?>

					</div>
					<?php endif; ?>
					<?php if(count($errors) > 0): ?>
						<div class="alert alert-danger">
							<strong>Whoops!</strong> There were some problems with your input.<br><br>
							<ul>
								<?php foreach($errors->all() as $error): ?>
									<li><?php echo e($error); ?></li>
								<?php endforeach; ?>
							</ul>
						</div>
					<?php endif; ?>
				</div>
			</div>
			<div class="row">
                <div class="col-lg-12">
                	<h1>Thank You</h1>
                </div>
            </div>

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

<?php $__env->startSection('extras'); ?>
	<style>
		h1 {			
			text-align: center;
			padding-top: 10px;
			padding-bottom: 10px;
		}
		#page-wrapper {
			margin-left: 0px;
		}
	</style>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('residential.templates.empty', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>