@php $customizerHidden = 'customizer-hide'; $pageConfigs = ['myLayout' => 'blank']; @endphp @extends('admin.layouts/layoutMaster' , ['body_class' => 'authentication']) @section('title', '2FA Challenge') @section('vendor-style') @endsection @section('page-style') @endsection @section('vendor-script') @endsection @section('page-script') @endsection @section('content') @include('admin._partials.auth-section')
@include('admin._partials.auth-svg-top')
{{ __('Please enter your recovery code to login.') }}

Punch in one of the recovery codes you received when setting up two-factor authentication . Note: Each recovery code can only be used once.

@if (session('status'))

{{ session('status') }}

@endif
@csrf
@error('recovery_code') {{ $message }} @enderror
@endsection