Edit File: 23ad6d01082ba30c3a2387b3267359fc18f5cf72.php
<div class="card border-left-success"> <div class="card-header d-flex justify-content-between"> <h4><?php echo e(__('admin.add_or_deduct_balance')); ?></h4> </div> <div class="card-body"> <form class="updateBalance" action="<?php echo e(route('admin.delegates.updateBalance' , ['id' => $row->id])); ?>" method="POST" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="row"> <div class="col-8"> <input type="number" name="balance" id="balance" class="form-control" placeholder="<?php echo e(__('admin.amount')); ?>" data-validation-required-message="<?php echo e(__('admin.this_field_is_required')); ?>" data-validation-containsnumber-regex="^([0-9]+)$" > </div> <div class="col-4"> <select name="type" id="" class="form-control"> <option value="0"><?php echo e(__('admin.charge')); ?></option> <option value="1"><?php echo e(__('admin.debt')); ?></option> </select> </div> </div> <div class="d-flex align-items-center"> <button type="submit" class="submit-button btn btn-labeled btn-labeled-right ml-auto legitRipple btn-primary mt-3"> <i class="feather icon-navigation"></i><?php echo e(__('admin.send')); ?></button> </div> </form> </div> </div><?php /**PATH /home/thunderw/public_html/resources/views/admin/delegates/parts/charge_wallet.blade.php ENDPATH**/ ?>
Back to File Manager