Trying to pull alt and title tag for a image via ACF using the image array. This is what I have been doing and it seems to work most of the time but I can't get it to work this time.
Here is my code.
See anything off?
<div class="slide-img">
<?php
$image = get_field('slide_image_1');
?>
<img class="rsImg" src="<?php echo $image; ?>" alt="<?php echo $image['alt']; ?>" title="<?php echo $image['title']; ?>">
</div>
slide_image_1 is my ACF name