@extends('admin.layout.app') @section('body')

{{ __('admin.two_factor_authentication') }}

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif @if(auth()->user()->two_factor_enabled)
{{ __('admin.2fa_is_enabled') }}
@csrf
@if($recoveryCodes)
{{ __('admin.recovery_codes') }} {{ implode(', ', $recoveryCodes) }}
@endif @else

{{ __('admin.scan_the_qr_code_with_google_authenticator') }}

@if($qrCode) @endif
@csrf
@endif
@endsection