Multiple wp_query loops showing first 5 posts on all pages instead of older posts[Resolved]

Perhaps check to see within the first loop if its paged or not based on the value you set for the ‘posts per page’ arguments. If not paged show the results via your template, if it is paged, then do nothing…

//First Loop
if ( $query1->have_posts() ) {
  while ( $query1->have_posts() ) {
    $query1->the_post();?>
    <?php if ( is_paged() == false ) { get_template_part( 'entry-slide',get_post_type('albums') ); } ?>
    <?php comments_template(); 
  }
 }
   wp_reset_postdata();

I have not tested this. Reference for is_paged(); condition: http://codex.wordpress.org/Function_Reference/is_paged