@extends('layouts.app') @section('title', 'Enable Two-Factor Authentication') @section('content') @if (!$required) Cancel @endif
@if ($required)
Your administrator requires two-factor authentication for all users. Complete setup to continue.
@endif
{!! $qrSvg !!}

If you cannot scan the QR code, enter this secret manually in your authenticator app:

{{ $secret }}

Account: {{ auth()->user()->email }}

@csrf
@error('code')

{{ $message }}

@enderror
@endsection