?
Current File : /home/sanghavirealty/public_html/resourcesazwer/views/modals/admin-makeitfeatured.blade.php
<!-- Modal -->
<div class="modal fade" id="makeitfeatured{{$course->id}}" tabindex="-1" aria-labelledby="makeitfeaturedModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="ModalLabel">Make it Featured {{Str::limit($course->listingtitle, 50)}}</h5>
        <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
      </div>
      <div class="modal-body">
        <form method="POST" action='{{ url('admin-makeitfeatured-update/') }}' id="makeitfeatured" >
          
          @csrf
          <input name="id" type="hidden" value="{{$course->id}}">
          <div class="row g-2 ">
              <div class="col">
                  <div class="form-floating mb-2">
                      <select name="featured" class="form-select @error('featured') is-invalid @enderror">
                          <option value="0.0" selected>Select Featured Type</option>
                              <option value='1'>Feature It</option>
                              <option value='0'>Un-Feature It</option>
                      </select>
                      <label for="floatingInput">Make it Featured</label>
                      @error('featured')
                          <div class="alert alert-danger">{{ $message }}</div>
                      @enderror
                  </div>
              </div>
            </div>
              <div class="text-center mt-3">
                <button type="submit" class="btn btn-lg btn-primary hvr-rectangle-out" form="makeitfeatured"
                    value="Submit">Submit <i class="fa fa-arrow-circle-right"></i></button>
            
                </div>


        </form>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
      </div>
    </div>
  </div>
</div>