7af11fcb0a1578b7640205a5265f781e34d09577.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php $__env->startSection('panel_content'); ?>
  2. <div class="aiz-titlebar mt-2 mb-4">
  3. <div class="row align-items-center">
  4. <div class="col-md-6">
  5. <h1 class="h3"><?php echo e(translate('Manage Profile')); ?></h1>
  6. </div>
  7. </div>
  8. </div>
  9. <br>
  10. <form action="/user/tpwd" method="POST" enctype="multipart/form-data">
  11. <input name="_method" type="hidden" value="POST">
  12. <?php echo csrf_field(); ?>
  13. <?php if($user->tpwd != ""): ?>
  14. <input name="type" type="hidden" value="2">
  15. <?php else: ?>
  16. <input name="type" type="hidden" value="1">
  17. <?php endif; ?>
  18. <!-- Basic Info-->
  19. <div class="card">
  20. <div class="card-header">
  21. <h5 class="mb-0 h6"><?php echo e(translate('Transaction Password')); ?></h5>
  22. </div>
  23. <div class="card-body">
  24. <?php if($user->tpwd != ""): ?>
  25. <div class="form-group row">
  26. <label class="col-md-2 col-form-label" for="spwd"><?php echo e(translate('original password')); ?></label>
  27. <div class="col-md-10">
  28. <input type="password" name="spwd" id="spwd" class="form-control" placeholder="<?php echo e(translate('original password')); ?>" required>
  29. </div>
  30. </div>
  31. <?php endif; ?>
  32. <div class="form-group row">
  33. <label class="col-md-2 col-form-label" for="password"><?php echo e(translate('Transaction Password')); ?></label>
  34. <div class="col-md-10">
  35. <input type="password" name="password" id="password" class="form-control" placeholder="<?php echo e(translate('Transaction Password')); ?>" required>
  36. </div>
  37. </div>
  38. <div class="form-group row">
  39. <label class="col-md-2 col-form-label" for="confirm_password"><?php echo e(translate('Confirm Password')); ?></label>
  40. <div class="col-md-10">
  41. <input type="password" name="confirm_password" id="confirm_password" class="form-control" placeholder="<?php echo e(translate('Confirm Password')); ?>" >
  42. </div>
  43. </div>
  44. <div class="form-group text-right">
  45. <button type="submit" class="btn btn-sm btn-primary"><?php echo e(translate('Save')); ?></button>
  46. </div>
  47. </div>
  48. </div>
  49. </form>
  50. <?php $__env->stopSection(); ?>
  51. <?php echo $__env->make('frontend.layouts.user_panel', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /www/wwwroot/www.easybuyjp.shop/resources/views/frontend/user/transaction.blade.php ENDPATH**/ ?>