Path : /var/www/html/moneyexchange/storage/framework/views/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/moneyexchange/storage/framework/views/b7d69061484c8f4206589d9ebebc15498d4f1e3e.php |
<?php $__env->startSection('content'); ?> <div class="page-wrapper"> <div class="page-breadcrumb"> <div class="row"> <div class="col-12 d-flex no-block align-items-center"> <h4 class="page-title"><?php echo e(__('message.money exchange list')); ?></h4> <div class="ms-auto text-end"> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="<?php echo e(route('money-exchange-lists.create')); ?>" class="btn btn-primary btn-sm"> <i class="fa fa-plus"></i> <?php echo e(__('message.add new')); ?> </a> </li> </ol> </nav> </div> </div> </div> </div> <div class="container-fluid" style="padding-top: 0px;"> <div class="card"> <div class="card-body form wizard-content"> <?php if(empty($moneyExchangeList)): ?> <form method="POST" action="<?php echo e(route('money-exchange-lists.store')); ?>" class="mt-5" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <section class="col-sm-6"> <div class="mb-3"> <label><?php echo e(__('message.from')); ?></label> <select class="form-select" name="exchange_from_currency_id"> <?php $__currentLoopData = $currencies; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index=>$currency): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($currency->id); ?>"> <?php echo e($currency->name); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="mb-3"> <label><?php echo e(__('message.to')); ?></label> <select class="form-select" name="exchange_to_currency_id"> <?php $__currentLoopData = $currencies; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index=>$currency): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($currency->id); ?>"> <?php echo e($currency->name); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="mb-3"> <label><?php echo e(__('message.calculation')); ?></label> <select class="form-select" name="calculation"> <option value="x"> x </option> <option value="/"> / </option> </select> </div> <div class="mb-3 mt-3"> <label><?php echo e(__('message.order')); ?></label> <input type="number" class="form-control" placeholder="<?php echo e(__('message.order')); ?>" name="order" step="1"> </div> <div class="text-center"> <button class="btn btn-danger btn-sm" type="button" onclick="window.history.back();"> <?php echo e(__('message.cancel')); ?> </button> <button type="submit" class="btn btn-primary btn-sm"> <i class="fa fa-save"></i> <?php echo e(__('message.save')); ?> </button> </div> </section> </form> <?php else: ?> <form method="POST" action="<?php echo e(route('money-exchange-lists.update', $moneyExchangeList)); ?>" class="mt-5" enctype="multipart/form-data"> <input name="_method" type="hidden" value="PUT"> <?php echo e(csrf_field()); ?> <section class="col-sm-6"> <div class="mb-3"> <label><?php echo e(__('message.from')); ?></label> <select class="form-select" name="exchange_from_currency_id"> <?php $__currentLoopData = $currencies; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index=>$currency): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($currency->id); ?>" <?php if($currency->id==$moneyExchangeList->exchange_from_currency_id): ?> selected <?php endif; ?>> <?php echo e($currency->name); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="mb-3"> <label><?php echo e(__('message.to')); ?></label> <select class="form-select" name="exchange_to_currency_id"> <?php $__currentLoopData = $currencies; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index=>$currency): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($currency->id); ?>" <?php if($currency->id==$moneyExchangeList->exchange_to_currency_id): ?> selected <?php endif; ?>> <?php echo e($currency->name); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="mb-3"> <label><?php echo e(__('message.calculation')); ?></label> <select class="form-select" name="calculation"> <option value="x" <?php if($moneyExchangeList->calculation=='x'): ?> selected <?php endif; ?>> x </option> <option value="/" <?php if($moneyExchangeList->calculation=='/'): ?> selected <?php endif; ?>> / </option> </select> </div> <div class="mb-3 mt-3"> <label><?php echo e(__('message.order')); ?></label> <input type="number" class="form-control" placeholder="<?php echo e(__('message.order')); ?>" name="order" step="1" value="<?php echo e($moneyExchangeList->order); ?>"> </div> <div class="mb-3"> <label><?php echo e(__('message.status')); ?></label> <select class="form-select" name="is_active"> <option value="1" <?php if($moneyExchangeList->is_active): ?> selected <?php endif; ?>><?php echo e(__('message.enable')); ?></option> <option value="0" <?php if(!$moneyExchangeList->is_active): ?> selected <?php endif; ?>><?php echo e(__('message.disable')); ?></option> </select> </div> <div class="text-center"> <button class="btn btn-danger btn-sm" type="button" onclick="window.history.back();"> <?php echo e(__('message.cancel')); ?> </button> <button type="submit" class="btn btn-primary btn-sm"> <i class="fa fa-save"></i> <?php echo e(__('message.save')); ?> </button> </div> </section> </form> <?php endif; ?> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('meta'); ?> <title><?php echo e(__('message.money exchange list')); ?></title> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.main', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/moneyexchange/resources/views/moneyExchangeList/moneyExchangeListForm.blade.php ENDPATH**/ ?>