From 7d0afdd0282a298c508dbf7507e206d5bf309944 Mon Sep 17 00:00:00 2001 From: Alexandr Chernyaev Date: Sun, 3 Nov 2024 01:56:19 +0300 Subject: [PATCH] Added missing errors on login --- resources/views/auth/lockme.blade.php | 2 +- resources/views/auth/signin.blade.php | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/resources/views/auth/lockme.blade.php b/resources/views/auth/lockme.blade.php index a233db9f2..06016947e 100644 --- a/resources/views/auth/lockme.blade.php +++ b/resources/views/auth/lockme.blade.php @@ -10,7 +10,7 @@ @error('email') - + {{ $errors->first('email') }} @enderror diff --git a/resources/views/auth/signin.blade.php b/resources/views/auth/signin.blade.php index ebb63d565..8747286a3 100644 --- a/resources/views/auth/signin.blade.php +++ b/resources/views/auth/signin.blade.php @@ -13,8 +13,15 @@ ->inputmode('email') ->placeholder(__('Enter your email')) !!} + + @error('email') + + {{ $errors->first('email') }} + + @enderror +