ACF + WP + Slick Slider Repeater Slide Group PHP not Displaying [closed]

Ok I figured it out! The setup is a little different but it works great.

PHP / HTML Working Code

<section class="dev-slider-wrppr">
  <div class="dev-slider-row">
    <div class="slider-for">
      <?php if( have_rows('slider_content') ): ?>
        <?php while( have_rows('slider_content') ): the_row(); ?>
           <?php
            $slideimage = get_sub_field('slider_image');
            $slidetitle = get_sub_field('slider_title');
            $slidebdycpy = get_sub_field('slider_body_copy');
            ?>
            <div class="slick-container">
              <h4 class="info-title text-center"><?php echo $slidetitle; ?></h4>
              <p class="description"><?php echo $slidebdycpy; ?></p>
              <img src="https://wordpress.stackexchange.com/questions/269364/<?php echo $slideimage["url']; ?>" alt="https://wordpress.stackexchange.com/questions/269364/<?php echo $slideimage["alt']; ?>" />
            </div>
        <?php endwhile; ?>
    <?php endif; ?>
  </div>
</section>

JS Working Code

jQuery(document).ready(function($){
$('.slider-for').slick({
   slidesToShow: 1,
   slidesToScroll: 1,
   dots: true,
   arrows: false,
   asNavFor: '.slider-for',
   focusOnSelect: true,
   fade: true,
   autoplay: false
   });
});

My ACF Setup
enter image description here

Now this is just the basic functionality. If anyone wants to use this they will still have to do some extra CSS & JS.