2023-06-01 06:19:33 +00:00
|
|
|
<x-layout-simple>
|
2023-06-01 10:15:33 +00:00
|
|
|
<div class="flex items-center justify-center h-screen">
|
2023-06-01 06:19:33 +00:00
|
|
|
<div>
|
2023-06-01 10:15:33 +00:00
|
|
|
<div class="flex flex-col items-center pb-8">
|
2023-06-13 06:47:14 +00:00
|
|
|
<a href="{{ route('dashboard') }}">
|
2024-03-24 15:00:25 +00:00
|
|
|
<div class="text-5xl font-bold tracking-tight text-center dark:text-white">Coolify</div>
|
2023-06-13 06:47:14 +00:00
|
|
|
</a>
|
2024-03-25 13:24:09 +00:00
|
|
|
{{-- <x-version /> --}}
|
2023-06-01 10:15:33 +00:00
|
|
|
</div>
|
|
|
|
|
2023-06-01 06:19:33 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2023-06-02 10:34:45 +00:00
|
|
|
<h1>{{ __('auth.forgot_password') }}</h1>
|
2023-06-01 06:19:33 +00:00
|
|
|
</div>
|
2023-06-12 14:39:48 +00:00
|
|
|
<div>
|
2023-06-12 13:47:42 +00:00
|
|
|
@if (is_transactional_emails_active())
|
|
|
|
<form action="/forgot-password" method="POST" class="flex flex-col gap-2">
|
|
|
|
@csrf
|
2023-09-28 09:01:00 +00:00
|
|
|
<x-forms.input required type="email" name="email" label="{{ __('input.email') }}" autofocus />
|
2023-06-12 13:47:42 +00:00
|
|
|
<x-forms.button type="submit">{{ __('auth.forgot_password_send_email') }}</x-forms.button>
|
|
|
|
</form>
|
|
|
|
@else
|
2023-06-12 14:39:48 +00:00
|
|
|
<div>Transactional emails are not active on this instance.</div>
|
2024-03-24 15:00:25 +00:00
|
|
|
<div>See how to set it in our <a class="dark:text-white" target="_blank"
|
2023-09-28 09:01:00 +00:00
|
|
|
href="{{ config('constants.docs.base_url') }}">docs</a>, or how to
|
2023-08-08 09:51:36 +00:00
|
|
|
manually reset password.
|
|
|
|
</div>
|
2023-06-12 13:47:42 +00:00
|
|
|
@endif
|
2023-06-01 10:15:33 +00:00
|
|
|
@if ($errors->any())
|
2023-06-12 13:47:42 +00:00
|
|
|
<div class="text-xs text-center text-error">
|
2023-09-10 13:33:00 +00:00
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
<p>{{ $error }}</p>
|
|
|
|
@endforeach
|
2023-06-01 10:15:33 +00:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@if (session('status'))
|
2023-06-12 13:47:42 +00:00
|
|
|
<div class="mb-4 text-xs font-medium text-green-600">
|
2023-06-01 10:15:33 +00:00
|
|
|
{{ session('status') }}
|
|
|
|
</div>
|
|
|
|
@endif
|
2023-06-01 06:19:33 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-06-01 10:15:33 +00:00
|
|
|
</div>
|
2023-06-01 06:19:33 +00:00
|
|
|
</x-layout-simple>
|