<?php $__env->startSection('content'); ?>
    <div class="box">
        <div class="box-body">
            <?php echo Form::open(); ?>

            <ul>
                <li><h4>New Cache will get auto generated once you clear it.</h4></li>
                <li><h4>Warning: Don't over use this feature..!!</h4></li>
                <li><h4>All logged in users might get logged out</h4></li>
                <li><h4>If something is not working, then clear the cache manually ( Read the docs )</h4></li>
            </ul>
            <hr>
            <div class="form-group">
                <?php echo Form::label('settings_cache', 'Clear Config Cache'); ?>

                <?php echo Form::checkbox('settings_cache'); ?>

            </div>
            <div class="form-group">
                <?php echo Form::label('template_cache', 'Clear Template Cache'); ?>

                <?php echo Form::checkbox('template_cache'); ?>

            </div>
            <div class="form-group">
                <?php echo Form::label('route_cache', 'Clear Routes cache and optimize it'); ?>

                <?php echo Form::checkbox('route_cache'); ?>

            </div>
            <div class="form-group">
                <?php echo Form::submit('Update',array('class'=>'btn btn-success')); ?>

            </div>
            <?php echo Form::close(); ?>

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


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