JFIF$        dd7 

Viewing File: /home/optimaldigitaltr/public_html/src/storage/framework/views/ce34c59c556b7c28f7653cdc99ce0e00.php

<?php $__env->startSection('panel'); ?>
    <section>
        <div class="container-fluid p-0">
            <div class="card">
                <div class="card-header">
                    <h4><?php echo e(__($setTitle)); ?></h4>
                </div>
                <div class="card-body">
                    <form action="<?php echo e(route('admin.manual.gateway.update', $traditionalGateway->id)); ?>" method="POST" enctype="multipart/form-data">
                        <?php echo csrf_field(); ?>
                        <?php echo method_field('POST'); ?> <!-- Add this line to specify the HTTP method -->
                        <div class="form-wrapper">
                            <div class="row mb-3 g-3">
                                <div class="mb-3 col-lg-6">
                                    <label for="name" class="form-label"> <?php echo e(__('admin.input.name')); ?> <sup class="text--danger">*</sup></label>
                                    <input type="text" name="name" id="name" value="<?php echo e($traditionalGateway->name); ?>" class="form-control" placeholder="<?php echo e(__('Enter Name')); ?>" required>
                                </div>

                                <div class="mb-3 col-lg-6">
                                    <label for="percent_charge" class="form-label"> <?php echo e(__('admin.input.percent_charge')); ?> <sup class="text--danger">*</sup></label>
                                    <div class="input-group">
                                        <input type="text" class="form-control" id="percent_charge" value="<?php echo e(getAmount($traditionalGateway->percent_charge)); ?>" name="percent_charge" placeholder="<?php echo e(__('Enter Number')); ?>" aria-describedby="basic-addon2" required>
                                        <span class="input-group-text" id="basic-addon2">%</span>
                                    </div>
                                </div>

                                <div class="mb-3 col-lg-6">
                                    <label for="currency_name" class="form-label"> <?php echo e(__('admin.input.currency_name')); ?> <sup class="text--danger">*</sup></label>
                                    <input type="text" name="currency" value="<?php echo e($traditionalGateway->currency); ?>" id="currency_name" class="form-control" placeholder="<?php echo e(__('Enter Currency Name')); ?>" required>
                                </div>

                                <div class="mb-3 col-lg-6">
                                    <label for="rate" class="form-label"> <?php echo e(__('admin.input.rate')); ?> <sup class="text--danger">*</sup></label>
                                    <div class="input-group mb-3">
                                        <span class="input-group-text"><?php echo e(getCurrencySymbol()); ?>1 = </span>
                                        <input type="text" name="rate" id="rate" value="<?php echo e(getAmount($traditionalGateway->rate)); ?>" class="method-rate form-control" aria-label="Amount (to the nearest dollar)" required>
                                    </div>
                                </div>

                                <div class="mb-3 col-lg-6">
                                    <label for="minimum" class="form-label"> <?php echo e(__('Minimum Amount')); ?> <sup class="text--danger">*</sup></label>
                                    <div class="input-group">
                                        <input type="text" class="form-control" id="minimum" name="minimum" value="<?php echo e(getAmount($traditionalGateway->minimum)); ?>" placeholder="<?php echo e(__('Enter Number')); ?>" aria-describedby="basic-addon2" required>
                                        <span class="input-group-text" id="basic-addon2"><?php echo e(getCurrencyName()); ?></span>
                                    </div>
                                </div>

                                <div class="mb-3 col-lg-6">
                                    <label for="maximum" class="form-label"> <?php echo e(__('Maximum Amount')); ?> <sup class="text--danger">*</sup></label>
                                    <div class="input-group">
                                        <input type="text" class="form-control" id="maximum" name="maximum" value="<?php echo e(getAmount($traditionalGateway->maximum)); ?>" placeholder="<?php echo e(__('Enter Number')); ?>" aria-describedby="basic-addon2" required>
                                        <span class="input-group-text" id="basic-addon2"><?php echo e(getCurrencyName()); ?></span>
                                    </div>
                                </div>

                                <div class="mb-3 col-lg-6">
                                    <label for="image" class="form-label"> <?php echo e(__('admin.input.image')); ?> <sup class="text--danger">*</sup></label>
                                    <input type="file" name="image" id="image" class="form-control">
                                    <?php if($traditionalGateway->image): ?>
                                        <img src="<?php echo e(getImage(imagePath()['gateway']['path'] . '/' . $traditionalGateway->image, imagePath()['gateway']['size'])); ?>" alt="<?php echo e($traditionalGateway->name); ?>" class="mt-2" />
                                    <?php endif; ?>
                                </div>

                                <!-- Added Wallet Field -->
                                <div class="mb-3 col-lg-6">
                                    <label for="wallet" class="form-label"> Wallet Address</label>
                                    <input type="text" name="wallet" id="wallet" value="<?php echo e(old('wallet', $traditionalGateway->wallet)); ?>" class="form-control" placeholder="Wallet">
                                </div>
                                <!-- End of Wallet Field -->

                                <div class="mb-3 col-lg-6">
                                    <label for="status" class="form-label"> <?php echo e(__('admin.input.status')); ?> <sup class="text--danger">*</sup></label>
                                    <select class="form-select" name="status" id="status" required>
                                        <?php $__currentLoopData = \App\Enums\Status::toArray(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key =>  $status): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                            <option value="<?php echo e($status); ?>" <?php if($traditionalGateway->status == $status): ?> selected <?php endif; ?>><?php echo e(replaceInputTitle($key)); ?></option>
                                        <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                    </select>
                                </div>

                                <div class="col-lg-12">
                                    <label for="details" class="form-label"> <?php echo e(__('Payment Details')); ?> <sup class="text--danger">*</sup></label>
                                    <textarea class="summernote" name="details" id="details"><?php echo $traditionalGateway->details ?></textarea>
                                </div>
                            </div>
                        </div>
                        <?php echo $__env->make('admin.partials.custom-field', [
                            'parameter' => $traditionalGateway->parameter,
                            'title' => __('admin.content.gateway'),
                            'details' => __('admin.content.gateway_details')
                        ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                        <button type="submit" class="i-btn btn--primary btn--md text--white"> <?php echo e(__('admin.button.update')); ?></button>
                    </form>
                </div>
            </div>
        </div>
    </section>
<?php $__env->stopSection(); ?>

<?php $__env->startPush('script-push'); ?>
    <script>
        'use strict'
        $(document).ready(function() {
            $('.summernote').summernote({
                height: 300,
                placeholder: 'Enter Payment Details',
                dialogsInBody: true,
                toolbar: [
                    ['style', ['bold', 'italic', 'underline', 'clear']],
                    ['font', ['strikethrough', 'superscript', 'subscript']],
                    ['fontsize', ['fontsize']],
                    ['color', ['color']],
                    ['para', ['ul', 'ol', 'paragraph']],
                    ['height', ['height']],
                    ['insert', ['picture', 'link', 'video']],
                ],
                callbacks: {
                    onInit: function() {
                    }
                }
            });
        });
    </script>
<?php $__env->stopPush(); ?>

<?php echo $__env->make('admin.layouts.main', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bittradexpress/public_html/src/resources/views/admin/payment_gateway/manual/edit.blade.php ENDPATH**/ ?>
Back to Directory  nL+D550H?Mx ,D"v]qv;6*Zqn)ZP0!1 A "#a$2Qr D8 a Ri[f\mIykIw0cuFcRı?lO7к_f˓[C$殷WF<_W ԣsKcëIzyQy/_LKℂ;C",pFA:/]=H  ~,ls/9ć:[=/#f;)x{ٛEQ )~ =𘙲r*2~ a _V=' kumFD}KYYC)({ *g&f`툪ry`=^cJ.I](*`wq1dđ#̩͑0;H]u搂@:~וKL Nsh}OIR*8:2 !lDJVo(3=M(zȰ+i*NAr6KnSl)!JJӁ* %݉?|D}d5:eP0R;{$X'xF@.ÊB {,WJuQɲRI;9QE琯62fT.DUJ;*cP A\ILNj!J۱+O\͔]ޒS߼Jȧc%ANolՎprULZԛerE2=XDXgVQeӓk yP7U*omQIs,K`)6\G3t?pgjrmۛجwluGtfh9uyP0D;Uڽ"OXlif$)&|ML0Zrm1[HXPlPR0'G=i2N+0e2]]9VTPO׮7h(F*癈'=QVZDF,d߬~TX G[`le69CR(!S2!P <0x<!1AQ "Raq02Br#SCTb ?Ζ"]mH5WR7k.ۛ!}Q~+yԏz|@T20S~Kek *zFf^2X*(@8r?CIuI|֓>^ExLgNUY+{.RѪ τV׸YTD I62'8Y27'\TP.6d&˦@Vqi|8-OΕ]ʔ U=TL8=;6c| !qfF3aů&~$l}'NWUs$Uk^SV:U# 6w++s&r+nڐ{@29 gL u"TÙM=6(^"7r}=6YݾlCuhquympǦ GjhsǜNlɻ}o7#S6aw4!OSrD57%|?x>L |/nD6?/8w#[)L7+6〼T ATg!%5MmZ/c-{1_Je"|^$'O&ޱմTrb$w)R$& N1EtdU3Uȉ1pM"N*(DNyd96.(jQ)X 5cQɎMyW?Q*!R>6=7)Xj5`J]e8%t!+'!1Q5 !1 AQaqё#2"0BRb?Gt^## .llQT $v,,m㵜5ubV =sY+@d{N! dnO<.-B;_wJt6;QJd.Qc%p{ 1,sNDdFHI0ГoXшe黅XۢF:)[FGXƹ/w_cMeD,ʡcc.WDtA$j@:) -# u c1<@ۗ9F)KJ-hpP]_x[qBlbpʖw q"LFGdƶ*s+ډ_Zc"?%t[IP 6J]#=ɺVvvCGsGh1 >)6|ey?Lӣm,4GWUi`]uJVoVDG< SB6ϏQ@ TiUlyOU0kfV~~}SZ@*WUUi##; s/[=!7}"WN]'(L! ~y5g9T̅JkbM' +s:S +B)v@Mj e Cf jE 0Y\QnzG1д~Wo{T9?`Rmyhsy3!HAD]mc1~2LSu7xT;j$`}4->L#vzŏILS ֭T{rjGKC;bpU=-`BsK.SFw4Mq]ZdHS0)tLg