@extends('layouts.auth') @section('content')
{{ csrf_field() }} @if (session('message'))
{{ session('message') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if($global->google_recaptcha_key)
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
@endif
@lang('app.forgotPassword')?
@if(!module_enabled('Subdomain'))

Don't have an account? Sign Up

Go to Website Home

@endif
@endsection