How can I add bigger image in my blog post?

Seems like you have fetched the thumbnail size image.

You can fetch/show the full image url that you have uploaded using

$imgsrc = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), "full" );
$imgsrc = $imgsrc[0];
echo $imgsrc;

Hope that helps!!