@extends('layouts.app') @section('title', 'Mot de passe oubliƩ') @section('content')
{{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }}
@if (session('status'))
{{ session('status') }}
@endif
@csrf
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@endsection