diff --git a/config/sentry.php b/config/sentry.php index 0b595573a..d691d226f 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ return [ // The release version of your application // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) - 'release' => '4.0.0-beta.31', + 'release' => '4.0.0-beta.32', 'server_name' => env('APP_ID', 'coolify'), // When left empty or `null` the Laravel environment will be used 'environment' => config('app.env'), diff --git a/config/version.php b/config/version.php index e48c6f12b..0a9679488 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@
@csrf - + {{ __('auth.confirm_password') }} @if ($errors->any()) -
- {{ __('auth.failed') }} +
+ @foreach ($errors->all() as $error) +

{{ $error }}

+ @endforeach
@endif @if (session('status')) diff --git a/resources/views/auth/forgot-password.blade.php b/resources/views/auth/forgot-password.blade.php index 89645e8f5..3f815646b 100644 --- a/resources/views/auth/forgot-password.blade.php +++ b/resources/views/auth/forgot-password.blade.php @@ -28,7 +28,9 @@ @endif @if ($errors->any())
- {{ __('auth.failed') }} + @foreach ($errors->all() as $error) +

{{ $error }}

+ @endforeach
@endif @if (session('status')) diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index 2ed0564bb..15b6e5703 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -43,7 +43,9 @@ @endif @if ($errors->any())
- {{ __('auth.failed') }} + @foreach ($errors->all() as $error) +

{{ $error }}

+ @endforeach
@endif @if (session('status')) diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php index 31003d2a9..ce632f31b 100644 --- a/resources/views/auth/register.blade.php +++ b/resources/views/auth/register.blade.php @@ -38,7 +38,9 @@ @if ($errors->any())
- {{ __('auth.failed') }} + @foreach ($errors->all() as $error) +

{{ $error }}

+ @endforeach
@endif
diff --git a/resources/views/auth/reset-password.blade.php b/resources/views/auth/reset-password.blade.php index e1afe3443..ae417a0d9 100644 --- a/resources/views/auth/reset-password.blade.php +++ b/resources/views/auth/reset-password.blade.php @@ -24,8 +24,10 @@ {{ __('auth.reset_password') }} @if ($errors->any()) -
- {{ __('auth.failed') }} +
+ @foreach ($errors->all() as $error) +

{{ $error }}

+ @endforeach
@endif @if (session('status')) diff --git a/resources/views/auth/two-factor-challenge.blade.php b/resources/views/auth/two-factor-challenge.blade.php index 4ec05cdae..d4abc66b0 100644 --- a/resources/views/auth/two-factor-challenge.blade.php +++ b/resources/views/auth/two-factor-challenge.blade.php @@ -31,8 +31,10 @@ {{ __('auth.login') }} @if ($errors->any()) -
- {{ __('auth.failed') }} +
+ @foreach ($errors->all() as $error) +

{{ $error }}

+ @endforeach
@endif @if (session('status')) diff --git a/versions.json b/versions.json index 575c865a3..68218eca5 100644 --- a/versions.json +++ b/versions.json @@ -4,7 +4,7 @@ "version": "3.12.36" }, "v4": { - "version": "4.0.0-beta.31" + "version": "4.0.0-beta.32" } } }