featured image is not showing

You need to call it in your theme.
open your theme index.php or better if you have loop.php and inside the loop
add

<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
  the_post_thumbnail();
} 
?>

Hope This helps.