add_destination.blade.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @extends('modal_pages.base')
  2. @section('main')
  3. <div class="container" style="background-color: white; border-radius: 6px;">
  4. <div class="row">
  5. <div class="co-md-12 p-3">
  6. <div class="form-icon position-relative" style="display:flex;">
  7. <i class="fa fa-search ms-3" style="position: absolute; margin-top: 14px; font-size: 13px;"></i>
  8. <input type="text" class="form-control search-box" id="" placeholder="Search" name="" required="" style="padding: 0.4rem 0.9rem 0.4rem 2.5rem !important; background: linear-gradient(to bottom, #FFF 0%,#FFF 55%,#eeedf1 80%,#f5f5f5 100%); font-size: 13px;">
  9. </div>
  10. <table class="table table-bordered list_table mt-3">
  11. <thead>
  12. <tr>
  13. <th class="text-center" style="width: 13%;">Sl</th>
  14. <th>Country</th>
  15. <th class="text-center"><i class="fa fa-cog"></i></th>
  16. </tr>
  17. </thead>
  18. <tbody style="border-style: dashed;">
  19. <tr>
  20. <td class="text-center" style="font-size: 11px;">1</td>
  21. <td style="font-size: 11px;">
  22. <img src="{{ asset('web/images/au.svg') }}" alt="" style="height: 20px; border-radius: 50%; width: 20px; margin: 3px;">
  23. Australia
  24. </td>
  25. <td class="text-center" style="font-size: 11px;">
  26. <div class="form-check form-switch" id="">
  27. <input class="form-check-input" type="checkbox" name="" value="" style="height:18px; width: 30px; position: absolute;">
  28. <label class="form-check-label" for=""></label>
  29. </div>
  30. </td>
  31. </tr>
  32. </tbody>
  33. </table>
  34. </div>
  35. </div>
  36. </div>
  37. <div class="container">
  38. <div class="col-md-12 text-end">
  39. <button type="submit" class="btn btn1 mt-3" style="padding: 3px 18px;">Done</button>
  40. </div>
  41. </div>
  42. <script>
  43. $(function(){
  44. // $('.select2').select2();
  45. $('#modal_page_footer').hide();
  46. });
  47. </script>
  48. @endsection