@extends('storefront.layouts.main') @section('title', 'Forgot Password') @section('content')
Forgot Password

Enter the email address associated with your account and we will send you a link to reset your password.

@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection