@extends('layouts.app') @section('title', '2FA Verification - ' . config('app.name', 'Laravel 2FA')) @section('content')

Two-Factor Authentication

Enter the 6-digit code from your authenticator app

Security Check

This extra step helps keep your account secure.

@csrf @if ($errors->any())

Verification Failed

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

Enter the 6-digit code from your authenticator app

Need help?

Make sure your device's time is synchronized and try again.

@if (config('app.env') === 'local')

Development bypass code: 123456

Visit /debug-codes for current TOTP codes

@endif
@endsection