@extends('layouts.frontend') @section('content')
{{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
@if ($errors->any())
Error!
    @foreach ($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif @if ($message = Session::get('success'))
{{ $message }}
@endif @if (session('status'))
{{ session('status') }}
@endif
@csrf
{{ __('Confirm') }}
@endsection