PATH:
home
/
rwabteecom
/
project_11
/
storage
/
framework
/
views
/
Editing: 6a624039414381e242df72eb23767d01.php
<?php $__env->startSection('body'); ?> <div class="design pt-4"> <div class="container"> <div class="row"> <div class="col-12 col-lg-8"> <?php echo $__env->make('dashboard.partials.intro-steps', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <div class="row my-4"> <div class="col-md-3 d-none d-md-block"> <?php echo $__env->make('dashboard.partials.aside-navigation', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </div> <div class="col-md-9 px-1 px-sm-2 px-lg-0 px-xl-3"> <form id="qr-design-form" method="POST" enctype="multipart/form-data"> <div class="py-4 px-3 px-sm-4 section-con"> <h5 class="section-title"><?php echo e(__('Customize your QR Code')); ?></h5> <p class="mb-4 text-black-50"> <?php echo e(__('Share your QR code in the real world on menus, business cards, and pamphlets to link to your digital world')); ?> </p> <div class="setting-box my-4"> <h5 class="setting-box-title p-3 mb-0"><?php echo e(__('QR Customization')); ?></h5> <div class="px-2 px-sm-3 py-3"> <div class="mb-4"> <label class="input-label"> <?php echo e(__('QR Color')); ?> </label> <div class="colorpicker-con d-flex align-items-center px-1"> <input type='text' class="colorpicker ps-1 onchange" name="qr_color" value="<?php echo e($domain->qr_color ? $domain->qr_color : '#000000'); ?>" readonly /> </div> </div> <div class="my-4"> <label class="input-label"> <?php echo e(__('Background Color')); ?> </label> <div class="colorpicker-con d-flex align-items-center px-1"> <input type='text' class="colorpicker ps-1 onchange" name="qr_background_color" value="<?php echo e($domain->qr_background_color ? $domain->qr_background_color : '#ffffff'); ?>" readonly /> </div> </div> <div class="mt-4"> <label class="input-label"> <?php echo e(__('QR Style')); ?> </label> <div class="d-flex Qr-style-select"> <div class="form-check text-center p-2"> <input class="form-check-input onchange" hidden type="radio" <?php if($domain->qr_dot_scale == '1'): ?> checked <?php endif; ?> value="1" name="qr_dot_scale" id="qr-style-1" /> <label class="form-check-label" for="qr-style-1"> <img src="<?php echo e(asset('dashboard/assets/1.png')); ?>" class="img-fluid" alt=""> </label> </div> <div class="form-check text-center p-2"> <input class="form-check-input onchange" hidden type="radio" <?php if($domain->qr_dot_scale == '.5'): ?> checked <?php endif; ?> value=".5" name="qr_dot_scale" id="qr-style-2" /> <label class="form-check-label" for="qr-style-2"> <img src="<?php echo e(asset('dashboard/assets/2.png')); ?>" class="img-fluid" alt=""> </label> </div> <div class="form-check text-center p-2"> <input class="form-check-input onchange" hidden type="radio" <?php if($domain->qr_dot_scale == '.1'): ?> checked <?php endif; ?> value=".1" name="qr_dot_scale" id="qr-style-3" /> <label class="form-check-label" for="qr-style-3"> <img src="<?php echo e(asset('dashboard/assets/3.png')); ?>" class="img-fluid" alt=""> </label> </div> </div> </div> </div> </div> <div class="setting-box mt-4"> <div class="setting-box-title p-3 mb-0 d-flex align-items-center flex-wrap"> <h5 class="mb-0 me-3"><?php echo e(__('Center Image')); ?></h5> <button class="upgrade-btn" disabled> <?php echo e(__('Upgrade')); ?> <svg width="19" height="19" class="ms-1" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M5.78271 7.82861V6.32861C5.78271 4.25755 7.46165 2.57861 9.53271 2.57861C11.0705 2.57861 12.392 3.50418 12.9707 4.82861M9.53271 11.2036V12.7036M7.13271 16.0786H11.9327C13.1928 16.0786 13.8229 16.0786 14.3042 15.8334C14.7276 15.6177 15.0718 15.2735 15.2875 14.8501C15.5327 14.3688 15.5327 13.7387 15.5327 12.4786V11.4286C15.5327 10.1685 15.5327 9.53844 15.2875 9.05713C15.0718 8.63377 14.7276 8.28956 14.3042 8.07385C13.8229 7.82861 13.1928 7.82861 11.9327 7.82861H7.13271C5.8726 7.82861 5.24254 7.82861 4.76124 8.07385C4.33787 8.28956 3.99367 8.63377 3.77795 9.05713C3.53271 9.53844 3.53271 10.1685 3.53271 11.4286V12.4786C3.53271 13.7387 3.53271 14.3688 3.77795 14.8501C3.99367 15.2735 4.33787 15.6177 4.76124 15.8334C5.24254 16.0786 5.8726 16.0786 7.13271 16.0786Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> </svg> </button> </div> <div class="px-2 px-sm-3 py-3 center-Image-type-con"> <div class="d-flex align-items-center flex-wrap center-Image-type mb-2"> <div class="form-check m-2"> <input class="form-check-input onchange" type="radio" name="qr_img_style" <?php if($domain->qr_img_style == 'custom_image'): ?> checked <?php endif; ?> value="custom_image" id="uploadImage" /> <label class="form-check-label" for="uploadImage"> <?php echo e(__('Upload Image')); ?></label> </div> <div class="form-check m-2"> <input class="form-check-input onchange" type="radio" name="qr_img_style" <?php if($domain->qr_img_style == 'profile_image'): ?> checked <?php endif; ?> value="profile_image" id="profileImage" /> <label class="form-check-label" for="profileImage"> <?php echo e(__('Profile Image')); ?></label> </div> <div class="form-check m-2"> <input class="form-check-input onchange" type="radio" name="qr_img_style" <?php if($domain->qr_img_style == 'no_image'): ?> checked <?php endif; ?> value="no_image" id="noneImage" /> <label class="form-check-label" for="noneImage"> <?php echo e(__('None Image')); ?></label> </div> </div> <div id="qr-image-dropzone" data-model="qr-image" class="dropzone-custom <?php if($domain->qr_img_style == 'custom_image'): ?> d-flex <?php else: ?> d-none <?php endif; ?> align-items-center justify-content-center px-2 px-md-4"> <div class="text-center my-2 dz-default dz-message"> <span class="d-block mb-4"> <svg width="65" height="64" viewBox="0 0 65 64" fill="none" xmlns="http://www.w3.org/2000/svg"> <path opacity="0.25" d="M8.64111 10.6979C8.64111 6.30572 12.2017 2.74512 16.5939 2.74512H42.4601C44.5693 2.74512 46.5922 3.583 48.0836 5.07444L54.0287 11.0196C55.5201 12.511 56.358 14.5338 56.358 16.643V53.113C56.358 57.5052 52.7974 61.0658 48.4052 61.0658H16.5939C12.2017 61.0658 8.64111 57.5052 8.64111 53.113V10.6979Z" fill="#00A3FF" /> <path d="M40.4526 5.10924C40.4526 3.80357 41.5111 2.74512 42.8168 2.74512C44.6978 2.74512 46.5017 3.49235 47.8318 4.82242L54.281 11.2716C55.611 12.6016 56.3583 14.4056 56.3583 16.2866C56.3583 17.5923 55.2998 18.6508 53.9942 18.6508H43.1036C41.6395 18.6508 40.4526 17.4639 40.4526 15.9998V5.10924Z" fill="#00A3FF" /> <path d="M31.485 24.1538C31.1724 24.2832 30.8794 24.4749 30.6253 24.7291L22.6724 32.6819C21.6372 33.7172 21.6372 35.3956 22.6724 36.4309C23.7077 37.4662 25.3862 37.4662 26.4214 36.4309L29.8488 33.0035V45.1602C29.8488 46.6242 31.0357 47.8111 32.4998 47.8111C33.9638 47.8111 35.1507 46.6242 35.1507 45.1602V33.0035L38.5781 36.4309C39.6133 37.4662 41.2918 37.4662 42.3271 36.4309C43.3623 35.3956 43.3623 33.7172 42.3271 32.6819L34.3743 24.7291C33.5932 23.948 32.4459 23.7562 31.485 24.1538Z" fill="#00A3FF" /> </svg> </span> <h5><?php echo e(__('Upload your image')); ?></h5> <p class="mb-0"> <?php echo e(__('Drag & Drop or choose files from computer')); ?> </p> </div> </div> </div> </div> </div> </form> </div> </div> </div> <div class="col-12 col-lg-4 share-area d-flex flex-column align-items-center"> <div class="qrDesign d-flex align-items-center justify-content-center p-4 mb-4" id="qr-img"> </div> <a href="<?php echo e(getUserLink()); ?>" target="_blank" class="text-black" id="userLink"><?php echo e(getUserLink()); ?></a> <button class="main-btn my-3 px-3 py-2 download-qr"> <svg width="20" height="20" class="me-2" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M17.5 12.5V13.5C17.5 14.9001 17.5 15.6002 17.2275 16.135C16.9878 16.6054 16.6054 16.9878 16.135 17.2275C15.6002 17.5 14.9001 17.5 13.5 17.5H6.5C5.09987 17.5 4.3998 17.5 3.86502 17.2275C3.39462 16.9878 3.01217 16.6054 2.77248 16.135C2.5 15.6002 2.5 14.9001 2.5 13.5V12.5M14.1667 8.33333L10 12.5M10 12.5L5.83333 8.33333M10 12.5V2.5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> </svg> <?php echo e(__('Downlaod')); ?></button> </div> </div> </div> </div> <?php echo $__env->make('dashboard.partials.qr-modal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('js'); ?> <?php echo $__env->make('dashboard.partials.qr-design-scripts', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php $__env->stopSection(); ?> <?php echo $__env->make('dashboard.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/rwabtee/project/resources/views/dashboard/pages/qr-design.blade.php ENDPATH**/ ?>
SAVE
CANCEL