@extends('layouts.auth') @section('content')
@if ($errors->any())

{{ __('Whoops! Something went wrong.') }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

{{ __('Confirm password') }}

{{ __('For your security, please confirm your password to continue.') }}

@endsection