Use Post Title as alt text for Featured Image

You can replace :

<?php echo get_the_post_thumbnail( $post->ID, 'full' ); ?>

with this:

<?php echo get_the_post_thumbnail( $post->ID, 'full' , array( 'alt' => get_the_title() )  ); ?>

to set the post tile as the alt attribute for the image