@extends('layouts.auth') @section('title', 'Two-factor authentication') @section('content')

Two-factor authentication

@if (session('recovery_codes'))

Save these recovery codes now. They are shown once and each works a single time.

@foreach (session('recovery_codes') as $code)
{{ $code }}
@endforeach
@elseif ($enabled)

Two-factor authentication is on for this account.

@csrf @method('DELETE')
@else

Scan this with your authenticator app, then enter the code it shows.

{!! $qrCode !!}

Cannot scan? Enter this key manually:
{{ $secret }}

@csrf
@endif @endsection