@extends('landing::_layouts.master') @section('title', __('messages.global.forgot_password')) @section('content') {{-- Header --}}

{{ __('messages.global.user_area') }}

{{-- Starting gradient --}} @include('landing::_layouts/_partials/gradient-start', ['fill' => '#f7fafc']) {{-- Content --}}
{{-- Flash Messages --}} @if (session('status')) @endif {{-- Title --}}

{{ __('messages.global.forgot_password') }}

{{-- Form --}}
{{-- CSRF --}} @csrf {{-- Account Type Field --}}
@if ($errors->has('account_type'))

{{ $errors->first('account_type') }}

@endif
{{-- Email Field --}}
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
{{-- Submit Button --}}
{{-- Ending gradient --}} @include('landing::_layouts/_partials/gradient-end', ['fill' => '#f7fafc']) @endsection