Skip to content

Commit 76ae3d7

Browse files
committed
fix: (LAR-107) correction des espaces
1 parent 3e0ac86 commit 76ae3d7

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

resources/views/livewire/pages/auth/forgot-password.blade.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,13 @@ public function sendPasswordResetLink(): void
3030
}
3131
}; ?>
3232

33-
3433
<div>
3534
<div class="flex min-h-full items-center justify-center py-16 sm:py-24">
3635
<div class="w-full max-w-md">
37-
<div>
38-
<x-status-message class="mb-5" />
36+
<div class="space-y-5">
37+
<x-status-message />
3938

40-
<x-validation-errors class="mb-5"/>
39+
<x-validation-errors />
4140

4241
<h2 class="text-center font-heading text-3xl font-extrabold text-gray-900 dark:text-white sm:text-left">
4342
{{ __('pages/auth.forgot.page_title') }}
@@ -48,7 +47,6 @@ public function sendPasswordResetLink(): void
4847
</div>
4948

5049
<form class="mt-8" wire:submit="sendPasswordResetLink">
51-
5250
<div class="block">
5351
<x-filament-forms::field-wrapper.label for="email">
5452
{{ __('validation.attributes.email') }}

resources/views/livewire/pages/auth/login.blade.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ public function login(): void
2626
<div>
2727
<x-container class="flex min-h-full items-center justify-center py-16 sm:pt-24">
2828
<div class="w-full max-w-md space-y-8">
29-
<div>
30-
<x-validation-errors class="mb-5" />
29+
<div class="space-y-5">
30+
<x-validation-errors />
3131

32-
<x-status-message class="mb-5" />
32+
<x-status-message />
3333

3434
<h2 class="text-center font-heading text-3xl font-extrabold text-gray-900 dark:text-white">
3535
{{ __('pages/auth.login.title') }}

0 commit comments

Comments
 (0)