File: //var/www/html/punjabcabs/storage/framework/views/08c12c9f820508699e7cd3f3458be8b8ea2e5d8e.php
<?php $__env->startSection('title', 'Pages '); ?>
<?php $__env->startSection('content'); ?>
<div class="content-area py-1">
<div class="container-fluid">
<div class="row bg-title">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<h4 class="page-title"><?php echo app('translator')->get('admin.member.page'); ?></h4>
</div>
<div class="col-lg-6 col-sm-6 col-md-6 col-xs-12">
<ol class="breadcrumb">
<li><a href="<?php echo e(route('admin.dashboard')); ?>"><?php echo app('translator')->get('admin.dashboard'); ?></a></li>
<li class="active"><?php echo app('translator')->get('admin.member.page'); ?></li>
</ol>
</div>
</div>
<div class="box box-block bg-white">
<h5>Privacy Policy</h5>
<div className="row">
<form action="<?php echo e(route('admin.pages.update')); ?>" method="POST">
<?php echo e(csrf_field()); ?>
<input type="hidden" name="page" value="page_privacy">
<div class="row">
<div class="col-xs-12">
<textarea name="content" id="myeditor"><?php echo e(Setting::get('page_privacy')); ?></textarea>
</div>
</div>
<br>
<div class="form-group row">
<label for="zipcode" class="col-xs-12 col-form-label"></label>
<div class="col-xs-10">
<button type="submit" class="btn btn-success"> <i class="fa fa-check"></i> <?php echo app('translator')->get('admin.member.update'); ?></button>
<a href="<?php echo e(route('admin.dashboard')); ?>" class="btn btn-inverse waves-effect waves-light"><?php echo app('translator')->get('admin.member.cancel'); ?></a>
</div>
</div>
</form>
</div>
</div>
<div class="box box-block bg-white">
<h5>Terms and Conditions</h5>
<div className="row">
<form action="<?php echo e(route('admin.pages.term')); ?>" method="POST">
<?php echo e(csrf_field()); ?>
<input type="hidden" name="page" value="term_condition">
<div class="row">
<div class="col-xs-12">
<textarea name="content" id="termeditor"><?php echo e(Setting::get('term_condition')); ?></textarea>
</div>
</div>
<br>
<div class="form-group row">
<label for="zipcode" class="col-xs-12 col-form-label"></label>
<div class="col-xs-10">
<button type="submit" class="btn btn-success"> <i class="fa fa-check"></i> <?php echo app('translator')->get('admin.member.update'); ?></button>
<a href="<?php echo e(route('admin.dashboard')); ?>" class="btn btn-inverse waves-effect waves-light"><?php echo app('translator')->get('admin.member.cancel'); ?></a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('scripts'); ?>
<script src="//cdn.ckeditor.com/4.6.2/standard/ckeditor.js"></script>
<script type="text/javascript">
CKEDITOR.replace('myeditor');
CKEDITOR.replace('termeditor');
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.layout.base', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>