delete.blade.php 1.0 KB

1234567891011121314151617181920212223
  1. <div class="modal fade" id="deleteModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  2. <div class="modal-dialog" role="document">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <img src="http://localhost:8000/templates/assets/img/trash.jpg" alt="" style="width: 50px; height: 30px; margin-bottom: 2px; padding-right: 10px; ">
  6. <h5 class="modal-title" id="exampleModalLabel" style="margin-top: 6px;">Hapus Data</h5>
  7. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  8. <span aria-hidden="true">&times;</span>
  9. </button>
  10. </div>
  11. <div style="width: 100%; display: block; height: 1px; background-color: #dedede;"></div>
  12. <div class="modal-body" style="overflow: hidden;">
  13. <form action="{{url()->full()}}/delete" method="GET" enctype="multipart/enctype">
  14. @csrf
  15. <input type="hidden" name="id" id="deid">
  16. <center>
  17. @include('dev.helpers.button.btnGroupHapus')
  18. </center>
  19. </form>
  20. </div>
  21. </div>
  22. </div>
  23. </div>