관리-도구
편집 파일: 4cf256c1d353f15ee0fcca78103a0177eb56fd6b.php
<form method="post" class="ajax-screen-submit" autocomplete="off" action="<?php echo e(action('CurrencyController@update', $id)); ?>" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <input name="_method" type="hidden" value="PATCH"> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Name')); ?></label> <select class="form-control auto-select select2" data-selected="<?php echo e($currency->name); ?>" name="name" required> <option value=""><?php echo e(_lang('Select One')); ?></option> <?php echo e(get_currency_list()); ?> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Base Currency')); ?></label> <select class="form-control auto-select" data-selected="<?php echo e($currency->base_currency); ?>" name="base_currency" > <option value=""><?php echo e(_lang('Select One')); ?></option> <option value="0"><?php echo e(_lang('No')); ?></option> <option value="1"><?php echo e(_lang('Yes')); ?></option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Exchange Rate')); ?></label> <input type="text" class="form-control" name="exchange_rate" value="<?php echo e($currency->exchange_rate); ?>" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Status')); ?></label> <select class="form-control auto-select" data-selected="<?php echo e($currency->status); ?>" name="status" required> <option value="1"><?php echo e(_lang('Active')); ?></option> <option value="0"><?php echo e(_lang('InActive')); ?></option> </select> </div> </div> <div class="form-group"> <div class="col-md-12"> <button type="submit" class="btn btn-primary"><?php echo e(_lang('Update')); ?></button> </div> </div> </form> <?php /**PATH /home/customamgdigital/saintsaccessories.custom.amgdigitalagency.com/resources/views/backend/currency/modal/edit.blade.php ENDPATH**/ ?>