Files
SkinbaseNova/.deploy/artwork-evolution-release/resources/views/auth/forgot-password.blade.php
2026-04-18 17:02:56 +02:00

36 lines
1.7 KiB
PHP

@extends('layouts.nova')
@section('content')
<div class="flex-1 flex items-center justify-center px-6 py-16 min-h-[calc(100vh-4rem)] box-border">
<div class="max-w-5xl w-full">
<div class="rounded-2xl border border-white/10 bg-slate-900/70 backdrop-blur shadow-xl p-8 auth-card">
<h2 class="text-2xl font-semibold mb-2 text-white">Reset Password</h2>
<p class="text-sm text-white/60 mb-6">Enter your email and we'll send a link to reset your password.</p>
@include('auth.partials.help-links', [
'title' => 'Need help recovering access?',
'description' => 'Use the auth guide for recovery basics or the troubleshooting page if the issue still feels broader than a reset link.',
'showLogin' => true,
])
<x-auth-session-status class="mt-4 mb-2 text-green-300" :status="session('status')" />
<form method="POST" action="{{ route('password.email') }}" class="mt-4">
@csrf
<div>
<label class="block text-sm mb-1 text-white/80" for="email">Email</label>
<x-text-input id="email" name="email" type="email" :value="old('email')" required autofocus class="w-full rounded-lg bg-slate-950/70 border border-white/10 px-4 py-3 text-sm focus:outline-none focus:ring-2 focus:ring-cyan-500 text-white" />
<x-input-error :messages="$errors->get('email')" class="mt-2" />
</div>
<div class="flex items-center justify-end mt-4">
<x-primary-button>
{{ __('Email Password Reset Link') }}
</x-primary-button>
</div>
</form>
</div>
</div>
@endsection