<?php
// Display all images directly from post meta field
$postMeta = get_post_meta($post->ID, 'YOUR_META_KEY');
foreach ($postMeta as $attachmentId) {
echo wp_get_attachment_image( $attachmentId, 'large', "", array( "class" => "img-fluid" ) );
}
?>