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

            <div class="form-group">
                <?php echo Form::label('perPage','Per Page'); ?>

                <select name="perPage" class="form-control">
                    <option value="<?php echo e(perPage()); ?>"><?php echo e(perPage()); ?></option>
                    <option>--------</option>
                    <?php for($i=1;$i<=100;$i++): ?>
                        <option value="<?php echo e($i); ?>"><?php echo e($i); ?></option>
                    <?php endfor; ?>
                </select>
            </div>


            <div class="form-group">
                <label for="addnew">Tags Limit</label>
                <select name="tagsLimit" class="form-control">
                    <option value="<?php echo e((int)siteSettings('tagsLimit')); ?>"><?php echo e((int)siteSettings('tagsLimit')); ?></option>
                    <option>--------</option>
                    <?php for ($l = 1; $l <= 30; $l++): ?>
                    <option value="<?php echo e($l); ?>"><?php echo e($l); ?></option>
                    <?php endfor; ?>
                </select>
            </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(); ?>