<?php
$category = get_queried_object();
$tremsk = "product_cat_".$category->term_id;
$term = get_field('cat_images', $tremsk);
if($term){
foreach ($term as $terms) {
echo "<li> <img src=" .$terms['product_cat_images']. "> </li>";
}}?>