function tax_img() {
$cur_terms = get_the_terms( $post->ID, 'actors' );
foreach( $cur_terms as $cur_term ){
echo '<img src="';
the_field( 'imgtax', $cur_term );
echo '"/>';
echo '<a href="'. get_term_link( (int)$cur_term->term_id, $cur_term->taxonomy ) .'">'. $cur_term->name .'</a><br>';
}
}