⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
public_html
/
storage
/
framework
/
views
/
View File Name :
a2488dc9a618b11dce299858f77895196cca5c73.php
<!-- Modal --> <div class="modal fade" id="addCurrentPackage" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle"><?php echo e(__("Add Current Package")); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form id="addCurrPackageForm" action="<?php echo e(route('user.currPackage.add')); ?>" method="POST"> <?php echo csrf_field(); ?> <input type="hidden" name="user_id" value="<?php echo e($user->id); ?>"> <div class="form-group"> <label for=""><?php echo e(__("Package")); ?> **</label> <select name="package_id" id="" class="form-control" required> <option value="" selected disabled><?php echo e(__("Select a Package")); ?></option> <?php $__currentLoopData = $packages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $package): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($package->id); ?>"><?php echo e($package->title); ?> (<?php echo e($package->term); ?>)</option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="form-group"> <label for=""><?php echo e(__("Payment Method")); ?></label> <select name="payment_method" class="form-control"> <option value="" selected disabled><?php echo e(__("Select a Payment Method")); ?></option> <?php $__currentLoopData = $gateways; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $gateway): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($gateway->name); ?>" ><?php echo e($gateway->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal"><?php echo e(__("Close")); ?></button> <button type="submit" form="addCurrPackageForm" class="btn btn-primary"><?php echo e(__("Add")); ?></button> </div> </div> </div> </div><?php /**PATH /home/id/public_html/resources/views/admin/register_user/add-current-package.blade.php ENDPATH**/ ?>