delete.blade.php 1.0 KB

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