{{ $this->form }} @php $user = auth('admin')->user(); $secret = $user->getTwoFactorSecret(); $qrCodeUrl = $user->getTwoFactorQrCodeUrl(); @endphp @if($secret && !$user->two_factor_enabled)

QRコードをスキャンしてください

QR Code

認証アプリでこのQRコードをスキャンしてください

手動設定用シークレットキー

{{ $secret }}

推奨認証アプリ

  • • Google Authenticator
  • • Microsoft Authenticator
  • • Authy
  • • 1Password

重要な注意事項

認証アプリに登録後、生成された6桁のコードを入力して設定を完了してください。

@endif @if($user->two_factor_enabled) @php $recoveryCodes = $user->getRecoveryCodes(); @endphp @if(count($recoveryCodes) > 0)

リカバリーコード

認証アプリにアクセスできない場合に使用できるリカバリーコードです。安全な場所に保管してください。

@foreach($recoveryCodes as $code)
{{ $code }}
@endforeach

※ 各コードは一度のみ使用可能です

@endif @endif
@foreach($this->getFormActions() as $action) {{ $action }} @endforeach