Viewing file: 5b2b5b2eaabe18be342eeecd3602a010e14e056c.php (1.64 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Purchase Code Verification'); ?> <?php $__env->startSection('content'); ?> <div class="<?php if(isset($code)): ?> d-none <?php endif; ?> card-body login-card-body"> <p class="login-box-msg">Purchase Code Verify</p>
<form id="verification_form" action="<?php echo e(route('verify')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="input-group mb-3"> <input name="purchase_code" type="text" class="form-control" placeholder="Enter purchase code" id="purchase_code"> <div class="input-group-append"> <div class="input-group-text"> <span class="fas fa-key"></span> </div> </div> </div> <div class="row"> <button type="submit" class="btn btn-primary btn-block"><?php echo app('translator')->get('auth.form.button.submit'); ?></button> </div> </form> </div> <?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-script'); ?>
<?php if(isset($code)): ?> <script> $("[name='purchase_code']").val('<?php echo e($code); ?>'); $('#verification_form').append('<input type="hidden" name="verify" value="true">').submit(); </script> <?php endif; ?> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.auth_admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/test.gateway.picotech.app/public_html/resources/views/admin/verify.blade.php ENDPATH**/ ?>
|