관리-도구
편집 파일: 8fa4cfd62cc63bc4e1c2c2fc4964a04d90aee543.php
<?php if(!empty($abe->language) && $abe->language->rtl == 1): ?> <?php $__env->startSection('styles'); ?> <style> form input, form textarea, form select { direction: rtl; } form .note-editor.note-frame .note-editing-area .note-editable { direction: rtl; text-align: right; } </style> <?php $__env->stopSection(); ?> <?php endif; ?> <?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title">Basic Informations</h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('admin.dashboard')); ?>"> <i class="flaticon-home"></i> </a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#">Basic Settings</a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#">Basic Informations</a> </li> </ul> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <form class="" action="<?php echo e(route('admin.basicinfo.update', $lang_id)); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-10"> <div class="card-title">Update Basic Informations</div> </div> <div class="col-lg-2"> <?php if(!empty($langs)): ?> <select name="language" class="form-control" onchange="window.location='<?php echo e(url()->current() . '?language='); ?>'+this.value"> <option value="" selected disabled>Select a Language</option> <?php $__currentLoopData = $langs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $lang): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($lang->code); ?>" <?php echo e($lang->code == request()->input('language') ? 'selected' : ''); ?>><?php echo e($lang->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> <?php endif; ?> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-6 offset-lg-3"> <?php echo csrf_field(); ?> <div class="form-group"> <label>Website Title **</label> <input class="form-control" name="website_title" value="<?php echo e($abs->website_title); ?>"> <?php if($errors->has('website_title')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('website_title')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label>Contact Email (for Admin) **</label> <input class="form-control ltr" name="contact_mail" value="<?php echo e($abs->contact_mail); ?>"> <?php if($errors->has('contact_mail')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('contact_mail')); ?></p> <?php endif; ?> <div class="text-warning">This email will be used to send mails to users and to receive mails via contact form from visitors.</div> </div> <div class="form-group"> <label>Package / Quote Order Receipent Mail **</label> <input class="form-control ltr" name="order_mail" value="<?php echo e($abe->order_mail); ?>"> <?php if($errors->has('order_mail')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('order_mail')); ?></p> <?php endif; ?> <div class="text-warning">This email will be used to receive mail notifications when client will place / request a order Via Package Order Form / Request a Quote Form.</div> </div> <div class="form-group"> <label>Base Color Code **</label> <input class="jscolor form-control ltr" name="base_color" value="<?php echo e($abs->base_color); ?>"> <?php if($errors->has('base_color')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('base_color')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label>Secondary Base Color Code **</label> <input class="jscolor form-control ltr" name="secondary_base_color" value="<?php echo e($abs->secondary_base_color); ?>"> <?php if($errors->has('secondary_base_color')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('secondary_base_color')); ?></p> <?php endif; ?> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" id="displayNotif" class="btn btn-success">Update</button> </div> </div> </div> </div> </form> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/inprosysltd/public_html/core/resources/views/admin/basic/basicinfo.blade.php ENDPATH**/ ?>