@extends('auth.layout.app') @section('title', config('app.name') . ' - Connexion') @section('content')
@csrf {{-- Token --}}

{{ __('auth.password_reset.new_password_title') }}

{{ __('auth.password_reset.new_password_subtitle') }}
{{-- Session status --}} @if (session('status'))
{{ session('status') }}
@endif {{-- Email --}}
@error('email')
{{ $message }}
@enderror
{{-- New password --}}
@error('password')
{{ $message }}
@enderror
{{-- Confirm new password --}}
@error('password_confirmation')
{{ $message }}
@enderror
@endsection