@extends('layouts.blank') @push('styles') @endpush @section('content')

Forgot Email

Recover your account by sending an email to an associated username

@if(session('status'))
{{ session('status') }}
@endif @if ($errors->any()) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif
{{ __('Recover Email') }}
@csrf
@if ($errors->has('username') ) {{ $errors->first('username') }} @endif
@if(config('captcha.enabled'))
{!! Captcha::display(['data-theme' => 'dark']) !!}
@if ($errors->has('h-captcha-response'))
{{ $errors->first('h-captcha-response') }}
@endif @endif
@endsection @push('scripts') @endpush @push('styles') @endpush