@extends('frontend.layouts.auth') @section('title', __('Two-Factor Authentication')) @section('auth-content')
{{-- Heading & Instructions --}}
Logo

{{ __('Verify Your Identity') }}

{{ __('Enter the 6-digit code from your Google Authenticator app to complete your login.') }}

{{-- Error Handling --}} @if ($errors->any()) @endif {{-- 2FA Verification Form --}}
@csrf
@error('verification_code') {{ $message }} @enderror
{{-- Verify Button --}}
{{-- Additional Info --}}

{{ __("Make sure your device's time is synced correctly, as incorrect time settings may cause verification issues.") }}

@endsection