Every Blade View have $errors variable bounded to it unless you set different one by yourself. If you use controller based error handling, you will probably have something like this inside it:
if ($validator->fails()){ return Redirect::to('/profile') ->withErrors($validator) ->withInput();}We passed validation errors to the profile view using withErrors() method and inside that view you can display them:
@if($errors->has()) @foreach ($errors->all() as $error) <div>{{ $error }}</div> @endforeach@endif