<?php $__env->startSection('styles'); ?>
    <link rel="stylesheet" href="<?php echo e(asset('/css/bootstrap-toggle.min.css')); ?>">
<?php $__env->stopSection(); ?>

<?php $__env->startSection('pagetitle'); ?>
	Profile <small>overview</small>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('crumbs'); ?>
	<li class="active">
		<i class="fa fa-user"></i> Profile
	</li>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('pagecontents'); ?>

    <div class="row">
        <div class="col-lg-12">
            <div class="panel panel-default">
                <div class="panel-heading">
                    <div class="clearfix"></div>
                </div>
                <div class="panel-body pages">
                    <div class="col-md-6">
                        <h3>Global Settings</h3>
                        <div class="table-responsive">
                            <?php echo Form::open(); ?>

                                <div class="col-md-12 toggle well">
                                    <label for="existing">Site is active</label>
                                    <input id="toggle-one" type="checkbox" checked data-on="Yes" data-off="No" name="active">
                                   
                                </div>
                                <div class="col-md-12">
                                    <label for="language">Default Language</label>
                                    <select name="langauge" id="language" class="form-control">
                                        <option value="eng">English</option>
                                        <option value="ara">Arabic</option>
                                    </select>
                                </div>
                                <div class="clearfix"></div>
                                <hr>
                                <div class="col-md-12 text-right">
                                    <button class="btn btn-primary">Save changes</button>
                                </div>
                            <?php echo Form::close(); ?>

                        </div>
                    </div>
                    <div class="clearfix"></div>

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

<?php $__env->startSection('scripts'); ?>
    <script type="text/javascript" src="<?php echo e(asset('/js/bootstrap-toggle.min.js')); ?>"></script>
    <script>
        $(function() {
            $('#toggle-one').bootstrapToggle();
          })
    </script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.masters.base', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>