ÿØÿÛ C 

ÿØÿÛ C 

<?php $__env->startSection('template_title'); ?>
    <?php echo e(trans('installer_messages.license.templateTitle')); ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('title'); ?>
    <i class="fa fa-key fa-fw" aria-hidden="true"></i>
    License Verification
<?php $__env->stopSection(); ?>

<?php $__env->startSection('container'); ?>
    <div class="tabs tabs-full">
        <?php if(session()->has('domin_url')): ?>
            <div class="alert alert-success" style="background-color: #d4edda;" id="license_alert">
                <strong>This Purchase Code Already Use for other Domin :</strong>
                <?php $__currentLoopData = session()->get('domin_url'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                    <p style="margin-bottom: 0px;color: #155724;"><?php echo e($item); ?></p>
                <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                <strong>
                    Envato not allow to install multiple domin. One purched codes for one Domin.
                    Author can take action any time for that.
                    <br>
                    Author Support : <a href="https://support.geniusdevs.com/" target="_blank">support.geniusdevs.com</a>
                </strong>
            </div> 
        <?php endif; ?>
        <form method="post" action="<?php echo e(route('LaravelInstaller::licenseCheck')); ?>" class="tabs-wrap">
            <?php if(session()->has('license_error')): ?>
                <div class="alert alert-danger" id="error_alert">
                    <button type="button" class="close" id="close_alert" data-dismiss="alert" aria-hidden="true">
                        <i class="fa fa-close" aria-hidden="true"></i>
                    </button>
                    <p style="margin-bottom: 0px;"><?php echo e(session()->get('license_error')); ?></p>
                </div>
            <?php endif; ?>

            <div class="alert alert-warning" style="background-color: #fff3cd; color: #856404;">
                <p style="margin-bottom: 0px;">If your internet connection is off, then please turn it on first</p>
            </div>

            <input type="hidden" name="_token" value="<?php echo e(csrf_token()); ?>">

            <div>
                <div class="form-group <?php echo e($errors->has('email') ? ' has-error ' : ''); ?>">
                    <label for="email">
                        Email Address
                    </label>
                    <input type="text" name="email" id="email" value="" placeholder="Your Mail Address" />
                    <p>This Mail Address will be used to inform you about Urgent Notices, Announcements, Offers / Sales etc...</p>
                    <?php if($errors->has('email')): ?>
                        <span class="error-block">
                            <i class="fa fa-fw fa-exclamation-triangle" aria-hidden="true"></i>
                            <?php echo e($errors->first('email')); ?>

                        </span>
                    <?php endif; ?>
                </div>

                <div class="form-group <?php echo e($errors->has('username') ? ' has-error ' : ''); ?>">
                    <label for="username">
                        Envato Username
                    </label>
                    <input type="text" name="username" id="username" value="" placeholder="Username of Your Envato Account" />
                    <?php if($errors->has('username')): ?>
                        <span class="error-block">
                            <i class="fa fa-fw fa-exclamation-triangle" aria-hidden="true"></i>
                            <?php echo e($errors->first('username')); ?>

                        </span>
                    <?php endif; ?>
                </div>

                <div class="form-group <?php echo e($errors->has('purchase_code') ? ' has-error ' : ''); ?>">
                    <label for="purchase_code">
                        Purchase Code
                    </label>
                    <input type="text" name="purchase_code" id="purchase_code" value="" placeholder="Your Item Purchase Code" />
                    <?php if($errors->has('purchase_code')): ?>
                        <span class="error-block">
                            <i class="fa fa-fw fa-exclamation-triangle" aria-hidden="true"></i>
                            <?php echo e($errors->first('purchase_code')); ?>

                        </span>
                    <?php endif; ?>
                </div>

                <div class="buttons">
                    <button class="button" type="submit" style="font-size: 14px;">
                        Verify
                        <i class="fa fa-angle-right fa-fw" aria-hidden="true"></i>
                    </button>
                </div>
            </div>

        </form>

    </div>
<?php $__env->stopSection(); ?>


<?php echo $__env->make('vendor.installer.layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/alienkyp/mayaralkhairgc.com/core/resources/views/vendor/installer/license.blade.php ENDPATH**/ ?>