@extends('layouts.front.app') @section('title', __('auth.forgot_password.heading')) @section('content')
{{-- Branding panel --}}

{{ __('auth.forgot_password.panel_heading') }}

{{ __('auth.forgot_password.panel_subheading') }}

  • {{ __('auth.forgot_password.features.inbox.title') }}

    {{ __('auth.forgot_password.features.inbox.description') }}

  • {{ __('auth.forgot_password.features.expiry.title') }}

    {{ __('auth.forgot_password.features.expiry.description') }}

{{-- Form panel --}}

{{ __('auth.forgot_password.heading') }}

{{ __('auth.forgot_password.subheading') }}

@csrf
{{ __('form.label.email') }}
{{ __('auth.forgot_password.button.send_reset_link') }}
@if(Route::has('user.login'))

{{ __('auth.forgot_password.remember_login') }} {{ __('buttons.back') }}

@endif
@endsection @push('before-app-js') {!! JsValidator::formRequest('App\Http\Requests\ForgotPasswordRequest', '#user-forgot-password-form') !!} @vite(['resources/js/user/auth/forgot-password.js']) @endpush