Below input field I include additional view:
@include('input-errors', ['inputName' => 'inputName']) #For your case it would be 'email'
input-errors.blade.php
@foreach ($errors->get($inputName) as $message)
<span class="input-error">{{ $message }}</span>
@endforeach
CSS - adds red color to the message.
.input-error {
color: #ff5555;
}