@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 --}} {{ __('messages.global.account_type') }} {{ __('messages.account_type.individual') }} {{ __('messages.account_type.organization') }} {{ __('messages.account_type.access') }} {{ __('messages.global.access') }} @if ($errors->has('account_type')) {{ $errors->first('account_type') }} @endif {{-- Email Field --}} {{ __('messages.global.email_address') }} @if ($errors->has('email')) {{ $errors->first('email') }} @endif {{-- Password Field --}} {{ __('messages.global.password') }} {{ __('messages.global.password_requirements') }} @if ($errors->has('password')) {{ $errors->first('password') }} @endif {{-- Password Confirmation Field --}} {{ __('messages.global.password_confirmation') }} @if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif {{-- Submit Button --}} {{ __('messages.global.update') }} {{-- Ending gradient --}} @include('landing::_layouts/_partials/gradient-end', ['fill' => '#f7fafc']) @endsection
{{ $errors->first('account_type') }}
{{ $errors->first('email') }}
{{ $errors->first('password') }}
{{ $errors->first('password_confirmation') }}