!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/dokan/script/storage/framework/views/   drwxrwxrwx
Free 13.26 GB of 57.97 GB (22.88%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     5a4c9907548f1b8c98160d300ad848f8ec4f22c6.php (8.07 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('head'); ?>
<?php 
echo $__env->make('layouts.partials.headersection',['title'=>'Edit '.$info->name], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
<?php $__env
->stopSection(); ?>
<?php $__env
->startSection('content'); ?>
<div class="row">
  <div class="col-12 mt-2">
    <div class="card">
      <div class="card-body">
        <form method="post" action="<?php echo e(route('admin.payment-geteway.update',$info->id)); ?>" class="basicform" enctype="multipart/form-data">
          <?php echo csrf_field(); ?>
          <?php echo method_field('PUT'); ?>
          <div class="row">
            <div class="col-sm-8">
              <div class="form-group">
               <label>Gateway Name</label>
               <input type="text" name="title" class="form-control" required value="<?php echo e($info->name); ?>"> 
             </div>

              <div class="form-group">
               <label>Desctiption</label>
               <textarea class="form-control" name="description" required=""><?php echo e($info->description->content ?? ''); ?></textarea>
             </div>
             <?php if($info->slug != 'cod'): ?>
             <div class="form-group">
               <label>Status</label>
               <select class="form-control" name="status">
                 <option value="1" <?php if($info->featured === 1): ?> selected="" <?php endif; ?>>Enable</option>
                 <option value="0" <?php if($info->featured === 0): ?> selected="" <?php endif; ?>>Disable</option>
               </select>
             </div>
             <?php endif; ?>
             <?php if($info->slug=='instamojo'): ?>
             <div class="form-group">
               <label>X-Api-Key</label>
               <input type="text" name="x_api_Key" class="form-control" required value="<?php echo e($credentials->x_api_Key ?? ''); ?>"> 
             </div>

             <div class="form-group">
               <label>X-Auth-Token</label>
               <input type="text" name="x_api_token" class="form-control" required value="<?php echo e($credentials->x_api_token ?? ''); ?>"> 
             </div>

             <?php endif; ?>

              <?php if($info->slug=='razorpay'): ?>
             <div class="form-group">
               <label>Key Id</label>
               <input type="text" name="key_id" class="form-control" required value="<?php echo e($credentials->key_id ?? ''); ?>"> 
             </div>

             <div class="form-group">
               <label>Key Secret</label>
               <input type="text" name="key_secret" class="form-control" required value="<?php echo e($credentials->key_secret ?? ''); ?>"> 
             </div>

            <div class="form-group">
              <label>Currency</label>
              <input class="form-control" required="" value="<?php echo e($credentials->currency ?? ''); ?>" name="currency" required="" type="text">
            </div>

             <?php endif; ?>

             <?php if($info->slug=='paypal'): ?>
             <div class="form-group">
               <label>Client ID</label>
               <input type="text" name="client_id" class="form-control" required value="<?php echo e($credentials->client_id ?? ''); ?>"> 
             </div>

             <div class="form-group">
               <label>Secret</label>
               <input type="text" name="client_secret" class="form-control" required value="<?php echo e($credentials->client_secret ?? ''); ?>"> 
             </div>

             <div class="form-group">
              <label>Currency</label>
              <input class="form-control" required="" value="<?php echo e($credentials->currency ?? ''); ?>" name="currency" required="" type="text">
            </div>

             <?php endif; ?>

             <?php if($info->slug=='stripe'): ?>
             <div class="form-group">
               <label>Publishable key</label>
               <input type="text" name="publishable_key" class="form-control" required value="<?php echo e($credentials->publishable_key ?? ''); ?>"> 
             </div>

             <div class="form-group">
               <label>Secret key</label>
               <input type="text" name="secret_key" class="form-control" required value="<?php echo e($credentials->secret_key ?? ''); ?>"> 
             </div>

             <div class="form-group">
              <label>Currency</label>
              <input class="form-control" required="" value="<?php echo e($credentials->currency ?? ''); ?>" name="currency" required="" type="text">
            </div>

             <?php endif; ?>
             <?php if($info->slug=='toyyibpay'): ?>
             <div class="form-group">
               <label>User Secret Key</label>
               <input type="text" name="userSecretKey" class="form-control" required value="<?php echo e($credentials->userSecretKey ?? ''); ?>"> 
             </div>

             <div class="form-group">
              <label>Category Code</label>
               <input type="text" name="categoryCode" class="form-control" required value="<?php echo e($credentials->categoryCode ?? ''); ?>"> 
             </div>

             <?php endif; ?>
             <?php if($info->slug=='mollie'): ?>
             <div class="form-group">
              <label>API Key</label>
              <input class="form-control" required="" value="<?php echo e($credentials->api_key ?? ''); ?>" name="api_key" required="" type="text">
            </div>

            <div class="form-group">
              <label>Currency</label>
              <input class="form-control" required="" value="<?php echo e($credentials->currency ?? ''); ?>" name="currency" required="" type="text">
            </div>

            <?php endif; ?>

            <?php if($info->slug=='paystack'): ?>
            <div class="form-group">
              <label>Public Key</label>
              <input class="form-control" required="" value="<?php echo e($credentials->public_key ?? ''); ?>" name="public_key" required="" type="text">
            </div>
            <div class="form-group">
              <label>Secret Key</label>
              <input class="form-control" required="" value="<?php echo e($credentials->secret_key ?? ''); ?>" name="secret_key" required="" type="text">
            </div>

            <div class="form-group">
              <label>Currency</label>
              <input class="form-control" required="" value="<?php echo e($credentials->currency ?? ''); ?>" name="currency" required="" type="text">
            </div>

            <?php endif; ?>

            <?php if($info->slug=='mercado'): ?>
            <div class="form-group">
              <label>Public Key</label>
              <input class="form-control" required="" value="<?php echo e($credentials->public_key ?? ''); ?>" name="public_key" required="" type="text">
            </div>
            <div class="form-group">
              <label>Access Token</label>
              <input class="form-control" required="" value="<?php echo e($credentials->access_token ?? ''); ?>" name="access_token" required="" type="text">
            </div>

            

            <?php endif; ?>



            <div class="form-group">
             <button class="btn btn-primary basicbtn" type="submit" >Update</button>
             </div>
           </div>
            <div class="col-sm-4">
              <div class="form-group col-12">
                <label>Thumbnail</label>
                <div  class="image-preview">
                  <label for="image-upload" id="image-label">Choose Thumbnail</label>
                  <input type="file" name="file" class="img_up" accept="image/*" />
                </div>

              </div>
            </div>

         </div>

         
         
       </form>


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

<?php $__env->startPush('js'); ?>
<script src="<?php echo e(asset('assets/js/form.js')); ?>"></script>
<?php $__env->stopPush(); ?>
<?php 
echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /Volumes/my-works/laravel/dokans/script/resources/views/admin/payment_gateway/edit.blade.php ENDPATH**/ ?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0057 ]--