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

            <div class="form-group">
                <label for="sitename">Site Name</label>
                <?php echo Form::text('sitename',siteSettings('siteName'),array('class'=>'form-control')); ?>

            </div>

            <div class="form-group">
                <label for="description">Description</label>
                <?php echo Form::text('description',siteSettings('description'),['class'=>'form-control']); ?>

            </div>

            <div class="form-group">
                <label for="favicon">Favorite.ico File.</label>
                <?php echo Form::file('fav_icon',['accept'=>'image/*']); ?>

            </div>

            <div class="form-group">
                <label for="tos">Terms Of Services</label>
                <?php echo Form::textarea('tos',htmlspecialchars(siteSettings('tos')),array('class'=>'form-control editor')); ?>

            </div>

            <div class="form-group">
                <label for="privacy">Privacy Policy</label>
                <?php echo Form::textarea('privacy',htmlspecialchars(siteSettings('privacy')),['class'=>'form-control editor']); ?>

            </div>

            <div class="form-group">
                <label for="faq">Frequently Asked Questions</label>
                <?php echo Form::textarea('faq',htmlspecialchars(siteSettings('faq')),['class'=>'form-control editor']); ?>

            </div>

            <div class="form-group">
                <label for="about">About Us</label>
                <?php echo Form::textarea('about',htmlspecialchars(siteSettings('about')),['class'=>'form-control editor']); ?>

            </div>

            <?php echo Form::submit('Update',['class'=>'btn btn-success']); ?>

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