detail.blade.php 910 B

123456789101112131415161718192021222324
  1. <div class="modal fade" id="detailModal" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  2. <div class="modal-dialog modal-lg " role="document">
  3. <div class="modal-content modal-lg">
  4. <div class="modal-header bg-primary">
  5. <h5 class="modal-title text-white" id="exampleModalLabel">DETAIL PERTANYAAN</h5>
  6. <button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
  7. <span aria-hidden="true">&times;</span>
  8. </button>
  9. </div>
  10. <div class="modal-body">
  11. <form action="#" method="POST" class="row" enctype="multipart/enctype">
  12. @csrf
  13. <div class="col-md-12 form-group">
  14. <label for="title">Pertanyaan</label>
  15. <input type="text" id="dpertanyaan" class="form-control" disabled>
  16. </div>
  17. <div class="modal-footer">
  18. @include('dev.helpers.button.btnBatal')
  19. </div>
  20. </form>
  21. </div>
  22. </div>
  23. </div>
  24. </div>