@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($setting->google_recaptcha)
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
@endif
@lang('app.forgotPassword')?
{{--
--}} {{--
--}} {{--

Don't have an account? Sign Up

--}} {{--
--}} {{--
--}}
@endsection