PATH:
home
/
rwabteecom
/
public_html
/
storage
/
framework
/
views
/
Editing: 0210a9dbfd268f8875ed3f58da07bbc2.php
<?php $__env->startSection('section'); ?> <div class="card w-100 "> <div class="card-body d-flex flex-column flex-md-row"> <?php echo $__env->make('settings.setting_menu', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <div class="w-100"> <div class="row g-4"> <div class="col-md-6"> <div class="card border shadow-sm h-100"> <div class="card-header bg-light"> <h5 class="mb-0"><?php echo e(__('messages.theme_color.primary_color')); ?></h5> </div> <div class="card-body d-flex flex-column align-items-center justify-content-center text-center p-4"> <span class="fw-semibold mb-2"><?php echo e(__('messages.theme_color.select_primary_color')); ?></span> <div class="primary-picker"></div> <form action="<?php echo e(route('change.theme.color')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="color" id="primaryColor" value="<?php echo e($setting['primary_color'] ?? ''); ?>"> <input type="hidden" name="check_color" value="1"> <button type="submit" class="btn btn-primary mt-3"><?php echo e(__('messages.common.save')); ?></button> </form> </div> </div> </div> <div class="col-md-6"> <div class="card border shadow-sm h-100"> <div class="card-header bg-light"> <h5 class="mb-0"><?php echo e(__('messages.theme_color.secondary_color')); ?></h5> </div> <div class="card-body d-flex flex-column align-items-center justify-content-center text-center p-4"> <span class="fw-semibold mb-2"><?php echo e(__('messages.theme_color.select_secondary_color')); ?></span> <div class="secondary-picker" style="height: 50px;width: 100px"></div> <form action="<?php echo e(route('change.theme.color')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="color" id="secondaryColor" value="<?php echo e($setting['secondary_color'] ?? ''); ?>"> <input type="hidden" name="check_color" value="2"> <button type="submit" class="btn btn-secondary mt-3 text-white"><?php echo e(__('messages.common.save')); ?></button> </form> </div> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('settings.edit', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/rwabteecom/public_html/resources/views/settings/theme_color.blade.php ENDPATH**/ ?>
SAVE
CANCEL