I\'m working on custom Laravel login implementation. I have returned the error from controller as follows:
$credentials = $request->only(\'email\', \'password
Try this :
@if($errors->has('email')) {{ $errors->first('email') }} @endif