<?php
$rows = get_field('mini');
if( $rows ) {
echo '<ul class="slides">';
foreach( $rows as $row ) {
$image = $row['2'];
echo '<li>';
echo wp_get_attachment_image( $image, 'full' );
echo wpautop( $row['1'] );
echo '</li>';
}
echo '</ul>';
}
?>