@extends('layouts.app') @section('title', 'Confirmer le mots de passe') @section('content')
{{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
@csrf
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@endsection