<?php $__env->startSection('content'); ?> <div class="content-header"> <div class="container-fluid"> <div class="row"> <div class="col-sm-6"> <h1 class="m-0 text-dark"><?php echo e(__('Page Visibility')); ?></h1> </div><!-- /.col --> <div class="col-sm-6"> <ol class="breadcrumb float-sm-right"> <li class="breadcrumb-item"><a href="<?php echo e(route('admin.dashboard')); ?>"><i class="fas fa-home"></i><?php echo e(__('Home')); ?></a></li> <li class="breadcrumb-item"><?php echo e(__('Page Visibility')); ?></li> </ol> </div><!-- /.col --> </div><!-- /.row --> </div><!-- /.container-fluid --> </div> <section class="content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12"> <form class="form-horizontal" action="<?php echo e(route('admin.pagevisibilityh3.update')); ?>" method="POST"> <?php echo csrf_field(); ?> <div class="card card-primary card-outline"> <div class="card-header"> <h3 class="card-title"> <?php echo e(__('Theme 3 Visibility')); ?> </h3> <div class="card-tools"> <a href="<?php echo e(route('admin.pagevisibility')); ?>" class="btn btn-primary btn-sm"> <i class="fas fa-angle-double-left"></i> <?php echo e(__('Back')); ?> </a> </div> </div> <div class="card-body"> <div class="form-group row"> <label class="col-sm-5 control-label"><?php echo e(__('Hero Section')); ?><span class="text-danger">*</span></label> <div class="col-sm-7"> <input type="checkbox" <?php echo e($visibility->is_t3_hero_section == '1' ? 'checked' : ''); ?> data-size="large" name="is_t3_hero_section" data-bootstrap-switch data-off-color="danger" data-on-color="primary" data-on-text="Visible" data-label-text="<i class='fas fa-mouse'></i>" data-off-text="Invisible"> <?php if($errors->has('is_t3_hero_section')): ?> <p class="text-danger"> <?php echo e($errors->first('is_t3_hero_section')); ?> </p> <?php endif; ?> </div> </div> <div class="form-group row"> <label class="col-sm-5 control-label"><?php echo e(__('Service Section')); ?><span class="text-danger">*</span></label> <div class="col-sm-7"> <input type="checkbox" <?php echo e($visibility->is_t3_service_section == '1' ? 'checked' : ''); ?> data-size="large" name="is_t3_service_section" data-bootstrap-switch data-off-color="danger" data-on-color="primary" data-on-text="Visible" data-label-text="<i class='fas fa-mouse'></i>" data-off-text="Invisible"> <?php if($errors->has('is_t3_service_section')): ?> <p class="text-danger"> <?php echo e($errors->first('is_t3_service_section')); ?> </p> <?php endif; ?> </div> </div> <div class="form-group row"> <label class="col-sm-5 control-label"><?php echo e(__('Portfolio Section')); ?><span class="text-danger">*</span></label> <div class="col-sm-7"> <input type="checkbox" <?php echo e($visibility->is_t3_portfolio_section == '1' ? 'checked' : ''); ?> data-size="large" name="is_t3_portfolio_section" data-bootstrap-switch data-off-color="danger" data-on-color="primary" data-on-text="Visible" data-label-text="<i class='fas fa-mouse'></i>" data-off-text="Invisible"> <?php if($errors->has('is_t3_portfolio_section')): ?> <p class="text-danger"> <?php echo e($errors->first('is_t3_portfolio_section')); ?> </p> <?php endif; ?> </div> </div> <div class="form-group row"> <label class="col-sm-5 control-label"><?php echo e(__('Testmonial Section')); ?><span class="text-danger">*</span></label> <div class="col-sm-7"> <input type="checkbox" <?php echo e($visibility->is_t3_testimonial_section == '1' ? 'checked' : ''); ?> data-size="large" name="is_t3_testimonial_section" data-bootstrap-switch data-off-color="danger" data-on-color="primary" data-on-text="Visible" data-label-text="<i class='fas fa-mouse'></i>" data-off-text="Invisible"> <?php if($errors->has('is_t3_testimonial_section')): ?> <p class="text-danger"> <?php echo e($errors->first('is_t3_testimonial_section')); ?> </p> <?php endif; ?> </div> </div> <div class="form-group row"> <label class="col-sm-5 control-label"><?php echo e(__('Faq Section')); ?><span class="text-danger">*</span></label> <div class="col-sm-7"> <input type="checkbox" <?php echo e($visibility->is_t3_faq_section == '1' ? 'checked' : ''); ?> data-size="large" name="is_t3_faq_section" data-bootstrap-switch data-off-color="danger" data-on-color="primary" data-on-text="Visible" data-label-text="<i class='fas fa-mouse'></i>" data-off-text="Invisible"> <?php if($errors->has('is_t3_faq_section')): ?> <p class="text-danger"> <?php echo e($errors->first('is_t3_faq_section')); ?> </p> <?php endif; ?> </div> </div> <div class="form-group row"> <label class="col-sm-5 control-label"><?php echo e(__('Team Section')); ?><span class="text-danger">*</span></label> <div class="col-sm-7"> <input type="checkbox" <?php echo e($visibility->is_t3_team_section == '1' ? 'checked' : ''); ?> data-size="large" name="is_t3_team_section" data-bootstrap-switch data-off-color="danger" data-on-color="primary" data-on-text="Visible" data-label-text="<i class='fas fa-mouse'></i>" data-off-text="Invisible"> <?php if($errors->has('is_t3_team_section')): ?> <p class="text-danger"> <?php echo e($errors->first('is_t3_team_section')); ?> </p> <?php endif; ?> </div> </div> <div class="form-group row"> <label class="col-sm-5 control-label"><?php echo e(__('Meet Us Section')); ?><span class="text-danger">*</span></label> <div class="col-sm-7"> <input type="checkbox" <?php echo e($visibility->is_t3_meet_us_section == '1' ? 'checked' : ''); ?> data-size="large" name="is_t3_meet_us_section" data-bootstrap-switch data-off-color="danger" data-on-color="primary" data-on-text="Visible" data-label-text="<i class='fas fa-mouse'></i>" data-off-text="Invisible"> <?php if($errors->has('is_t3_meet_us_section')): ?> <p class="text-danger"> <?php echo e($errors->first('is_t3_meet_us_section')); ?> </p> <?php endif; ?> </div> </div> <div class="form-group row"> <label class="col-sm-5 control-label"><?php echo e(__('News Section')); ?><span class="text-danger">*</span></label> <div class="col-sm-7"> <input type="checkbox" <?php echo e($visibility->is_t3_news_section == '1' ? 'checked' : ''); ?> data-size="large" name="is_t3_news_section" data-bootstrap-switch data-off-color="danger" data-on-color="primary" data-on-text="Visible" data-label-text="<i class='fas fa-mouse'></i>" data-off-text="Invisible"> <?php if($errors->has('is_t3_news_section')): ?> <p class="text-danger"> <?php echo e($errors->first('is_t3_news_section')); ?> </p> <?php endif; ?> </div> </div> <div class="form-group row"> <label class="col-sm-5 control-label"><?php echo e(__('Client Section')); ?><span class="text-danger">*</span></label> <div class="col-sm-7"> <input type="checkbox" <?php echo e($visibility->is_t3_client_section == '1' ? 'checked' : ''); ?> data-size="large" name="is_t3_client_section" data-bootstrap-switch data-off-color="danger" data-on-color="primary" data-on-text="Visible" data-label-text="<i class='fas fa-mouse'></i>" data-off-text="Invisible"> <?php if($errors->has('is_t3_client_section')): ?> <p class="text-danger"> <?php echo e($errors->first('is_t3_client_section')); ?> </p> <?php endif; ?> </div> </div> </div> </div> <div class="card"> <div class="card-body"> <div class="form-group row mt-4"> <div class="col-sm-12"> <button type="submit" class="btn btn-primary btn-block"><?php echo e(__('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> <!-- /.col --> </div> </section> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/masbinta/public_html/core/resources/views/admin/settings/pv/pvh3.blade.php ENDPATH**/ ?>