Actually I managed to get the content added in dashboard. I mean the content I type into input field under Pages. I have a page named Blog which not only shows the posts but as well as this extra content from this input field.
<?php // Get page content (Blog)
$p = get_post($id);
echo apply_filters('the_content', $p->post_content);
?>