@extends('layouts.guest') @section('title', 'Confirm your password') @section('styles') @parent @endsection @section('content')
This is a secure area. Please confirm your password before continuing.
@csrf
Enter Password
*
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
Confirm
@endsection @section('scripts') @parent @endsection