<div class="col-12">
<div class="divider divider-primary">
<div class="divider-text"><h4 class="text-primary">Your current license</h4></div>
</div>
<p>Thank you for purchasing Ultimate SMS! Below is your license key, also known as Purchase Code. Your license type is <strong class="text-primary"> <?php echo e(\App\Helpers\Helper::app_config('license_type')); ?></strong></p>
<h4><?php echo e(\App\Helpers\Helper::app_config('license')); ?></h4>
<div class="divider divider-primary mt-3">
<div class="divider-text"><h4 class="text-primary">License types</h4></div>
</div>
<p>When you purchase Ultimate SMS from Envato website, you are actually purchasing a license to use the product.
There are 2 types of license that are issued</p>
<h4>Regular License</h4>
<p>All features are available, for a single end product which end users are NOT charged for</p>
<h4>Extended License</h4>
<p>All features are available, for a single end product which end users can be charged for (software as a service)</p>
<div class="divider divider-primary mt-3">
<div class="divider-text"><h4 class="text-primary">Update your license</h4></div>
</div>
<div class="form-body">
<form class="form form-vertical" action="<?php echo e(route('admin.settings.license')); ?>" method="post">
<?php echo csrf_field(); ?>
<div class="mb-1">
<label for="license" class="form-label required">Insert your purchase code</label>
<input type="text" class="form-control" name="license" id="license" required>
<p><small class="text-primary">Enter the licence key (purchase code) then hit the Update button</small></p>
<?php $__errorArgs = ['license'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<p><small class="text-danger"><?php echo e($message); ?></small></p>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
</div>
<button type="submit" class="btn btn-primary btn-sm"><i data-feather="save"></i> <?php echo e(__('locale.buttons.update')); ?> </button>
</form>
</div>
</div>
<?php /**PATH /home/bouloter/sms/resources/views/admin/settings/AllSettings/_license.blade.php ENDPATH**/ ?>