@extends('layouts.auth') @section('title') {{ config('app.name', 'Laravel') }} | {{ __('auth.forgot-password.title') }} @endsection @section('content')

{{__('auth.forgot-password.title')}}

@include('includes.alerts')
@csrf
mail
@error('email') {{ $message }} @enderror
@if (Route::has('auth.login')) {{ __('auth.login.title') }} @endif
@if (Route::has('auth.register')) {{ __('auth.register.title') }} @endif
@endsection