@extends('layouts.home') @include('includes.navbar') @section('content')
Reset Password
@if (session('status'))
{{ session('status') }}
@endif @if (isset($success) && !$success)
{{ $message }}
@else
{{ csrf_field() }}
@if (auth()->check()) @else @endif @if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endif
@endsection