@extends('layouts.auth') @section('title', __('Recuperar Contraseña')) @section('content')

{{ __('Recuperar contraseña') }}

{{ __('Introduce tu correo y te enviaremos el enlace de recuperación') }}

@if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
@csrf
@error('email')
{{ $message }}
@enderror
@endsection