3ac73fa49fb1283c711b4e958354e5a746bf3baa.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php $__env->startSection('content'); ?>
  2. <!--<div class="aiz-titlebar text-left mt-2 mb-3">-->
  3. <!-- <h5 class="mb-0 h6"><?php echo e(translate('Edit Seller Information')); ?></h5>-->
  4. <!--</div>-->
  5. <div class="col-lg-6 mx-auto" style="flex: 0 0 100%; max-width: 100%;">
  6. <div class="card">
  7. <div class="card-header">
  8. <h5 class="mb-0 h6"><?php echo e(translate('Seller Information')); ?></h5>
  9. </div>
  10. <div class="card-body">
  11. <form action="<?php echo e(route('sellers.update', $shop->id)); ?>" method="POST">
  12. <input name="_method" type="hidden" value="PATCH">
  13. <?php echo csrf_field(); ?>
  14. <div class="form-group row">
  15. <label class="col-sm-3 col-from-label" for="name"><?php echo e(translate('Name')); ?></label>
  16. <div class="col-sm-9">
  17. <input type="text" placeholder="<?php echo e(translate('Name')); ?>" id="name" name="name" class="form-control" value="<?php echo e($shop->user->name); ?>" required>
  18. </div>
  19. </div>
  20. <div class="form-group row">
  21. <label class="col-sm-3 col-from-label" for="email"><?php echo e(translate('Email Address')); ?></label>
  22. <div class="col-sm-9">
  23. <input type="text" placeholder="<?php echo e(translate('Email Address')); ?>" id="email" name="email" class="form-control" value="<?php echo e($shop->user->email); ?>" required>
  24. </div>
  25. </div>
  26. <div class="form-group row">
  27. <label class="col-sm-3 col-from-label" for="password"><?php echo e(translate('Password')); ?></label>
  28. <div class="col-sm-9">
  29. <input type="password" placeholder="<?php echo e(translate('Password')); ?>" id="password" name="password" class="form-control">
  30. </div>
  31. </div>
  32. <div class="form-group row">
  33. <label class="col-sm-3 col-from-label" for="tpwd"><?php echo e(translate('Transaction Password')); ?></label>
  34. <div class="col-sm-9">
  35. <input type="password" placeholder="<?php echo e(translate('Transaction Password')); ?>" id="tpwd" name="tpwd" class="form-control" />
  36. </div>
  37. </div>
  38. <div class="form-group row" style="display:none;">
  39. <label class="col-sm-3 col-from-label" for="password"><?php echo e(translate('Views')); ?></label>
  40. <div class="col-sm-9">
  41. <input type="number" placeholder="<?php echo e(translate('Views')); ?>" value="<?php echo e($shop->views); ?>" id="views" name="views" class="form-control">
  42. </div>
  43. </div>
  44. <div class="form-group row">
  45. <label class="col-sm-3 col-from-label" for="password"><?php echo e(translate('Rating')); ?></label>
  46. <div class="col-sm-9">
  47. <input type="number" placeholder="<?php echo e(translate('Rating')); ?>" value="<?php echo e($shop->rating); ?>" id="rating" name="rating" class="form-control">
  48. </div>
  49. </div>
  50. <div class="form-group mb-0 text-right">
  51. <button type="submit" class="btn btn-primary"><?php echo e(translate('Save')); ?></button>
  52. </div>
  53. </form>
  54. </div>
  55. </div>
  56. </div>
  57. <?php $__env->stopSection(); ?>
  58. <?php echo $__env->make('backend.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /www/wwwroot/www.easybuyjp.shop/resources/views/backend/sellers/edit.blade.php ENDPATH**/ ?>