mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 08:23:25 +00:00
46 lines
2.0 KiB
PHP
46 lines
2.0 KiB
PHP
<x-layout-simple>
|
||
<x-auth.shell title="Coolify"
|
||
description="Enter your account email and we’ll send you a secure reset link.">
|
||
<div class="flex flex-col gap-4">
|
||
@if (session('status'))
|
||
<x-auth.alert type="success">{{ session('status') }}</x-auth.alert>
|
||
@endif
|
||
|
||
@if ($errors->any())
|
||
<x-auth.alert type="error">
|
||
<div class="flex flex-col gap-1">
|
||
@foreach ($errors->all() as $error)
|
||
<p>{{ $error }}</p>
|
||
@endforeach
|
||
</div>
|
||
</x-auth.alert>
|
||
@endif
|
||
|
||
@if (is_transactional_emails_enabled())
|
||
<form action="/forgot-password" method="POST" class="flex flex-col gap-4">
|
||
@csrf
|
||
<x-forms.input required type="email" name="email" autocomplete="email" autofocus
|
||
label="{{ __('input.email') }}" />
|
||
<x-forms.button class="w-full justify-center" type="submit" isHighlighted>
|
||
{{ __('auth.forgot_password_send_email') }}
|
||
</x-forms.button>
|
||
</form>
|
||
@else
|
||
<x-auth.alert type="warning">
|
||
<p class="font-medium">Transactional email is not configured</p>
|
||
<p class="mt-0.5 text-black/70 dark:text-white/70">
|
||
Configure email delivery or follow the
|
||
<a class="font-medium underline underline-offset-2" target="_blank" rel="noopener noreferrer"
|
||
href="{{ config('constants.urls.docs') }}">manual reset guide</a>.
|
||
</p>
|
||
</x-auth.alert>
|
||
@endif
|
||
</div>
|
||
|
||
<x-slot:footer>
|
||
<span>Remember your password?</span>
|
||
<a href="/login" class="auth-text-link">Back to login</a>
|
||
</x-slot:footer>
|
||
</x-auth.shell>
|
||
</x-layout-simple>
|