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

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

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

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

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

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

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

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

@endif
{{-- Password Field --}}
@if ($errors->has('password'))

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

@endif
{{-- Password Confirmation Field --}}
@if ($errors->has('password_confirmation'))

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

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