You need to display the paginated results properly, have a look here:
https://laravel.com/docs/master/pagination#displaying-pagination-results
<div class="container">
@foreach ($users as $user)
{{ $user->name }}
@endforeach
</div>
{{ $users->links() }}
you are not showing the posts anywhere in your code in blade:
<form action="{{ route('search') }}" method="GET" role="search">
<div class="search">
<input type="text" class="form-control searchTerm" name="q" placeholder="What are you looking for?">
<button type="submit" class="searchButton">
<i class="fa fa-search"></i>
</button>
</div>
</form>
<div class="container">
@foreach ($posts as $post)
{{ $post->title }}
@endforeach
</div>
{{ $posts->links() }}