<?php $__env->startSection('content'); ?>
<div class="content" id="content">

	<div class="overlay"></div>			
	
<?php echo $__env->make('admin.includes.topbar', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
	
	<!-- main content -->
	<div class="main-content">


		<!-- panel -->

		<div class="panel panel-piluku">
			<div class="panel-heading">
				<h3 class="panel-title">
					Edit Booking <?php echo $booking->booking_no; ?>

					<span class="panel-options">
						<a href="#" class="panel-refresh">
							<i class="icon ti-reload"></i>
						</a>
						<a href="#" class="panel-minimize">
							<i class="icon ti-angle-up"></i>
						</a>
						<a href="#" class="panel-close">
							<i class="icon ti-close"></i>
						</a>
					</span>
				</h3>
			</div>

<?php if(Session::has('error')): ?>
<div class="alert bg-danger text-white">
              <?php echo Session::get('success'); ?>

            </div>

<?php endif; ?>

<?php if(Session::has('success')): ?>
<div class="alert bg-success text-white">
              <?php echo Session::get('success'); ?>

            </div>

<?php endif; ?>





			<div class="panel-body">
					<?php echo Form::open(array('route' => 'updatebooking', 'files'=>true, 'id' => 'form-a', 'class' => 'form form-horizontal')); ?>

		
			<input name="booking_id" type="text" hidden style="display: none" value="<?php echo $booking->id; ?>" required class="form-control"  />

					<div class="form-group">
						<label class="col-sm-2 control-label" for="inline-suggestions">Booking Voucher No.:</label>
						<div class="col-sm-8">
							<input name="booking_no" type="text" value="<?php echo $booking->booking_no; ?>" required class="form-control"  />
						</div>
					</div>


					<div class="form-group">
						<label class="col-sm-2 control-label" for="inline-suggestions">Hotel Name:</label>
						<div class="col-sm-8">
							<input name="hotel_name" type="text" readonly value="<?php echo $booking->hotel_name; ?>" required class="form-control"  />
						</div>
					</div>

				




					<div class="form-group">
						<label class="col-sm-2 control-label" for="inline-suggestions">Special Request:</label>
						<div class="col-sm-8">
							<input name="special_request" type="text" value="<?php echo $booking->special_request; ?>"  class="form-control"  />
						</div>
					</div>

					


					<div class="form-group">
						<label class="col-sm-2 control-label" for="inline-suggestions">Remarks:</label>
						<div class="col-sm-8">
							<input name="remarks" type="text" value="<?php echo $booking->remarks; ?>"  class="form-control"  />
						</div>
					</div>









				
					





					
			<div class="form-group">
				<div class="col-sm-offset-2 col-sm-8">
					<input type="submit" class="btn btn-success">
					<input type="reset" class="btn btn-danger">
				</div>
			</div>
		</form>
	</div>
</div>
<!-- /panel -->

</div>
<!-- /main content -->				
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>