@extends('auth.layout') @section('title', 'Set up two-step verification') @section('content')

Account security

Enable two-step verification

Scan the QR code with your authenticator app, then enter the 6-digit code to confirm.

@if (session('status'))
{{ session('status') }}
@endif
{!! $qrSvg !!}
Manual key: {{ $secret }}
@csrf
@error('code')

{{ $message }}

@enderror
@if (count($recoveryCodes) > 0)

Recovery codes

Store these codes in a safe place. Each code can be used only once if you lose access to your authenticator.

@foreach ($recoveryCodes as $rc)
{{ $rc }}
@endforeach
@endif
@endsection