Viewing file: 4f3a7050eb6f9619923df2ffba2424f7d2e7c460.php (1.67 KB) -rw-r--r-- 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/gateway.picotech.app/public_html/resources/views/admin/verify.blade.php ENDPATH**/ ?>
|