@extends('reviewer.layouts.app') @section('title', translate('Settings')) @section('container', 'dashboard-container-md') @section('content')
{{ translate('Account Details') }}
@csrf
{{ $reviewer->getName() }}
@if ($reviewer->categories->count() > 0)
@foreach ($reviewer->categories as $category) @endforeach
@endif
{{ translate('Change Password') }}
@csrf
{{ translate('2Factor Authentication') }}

{{ translate('Two-factor authentication (2FA) strengthens access security by requiring two methods (also referred to as factors) to verify your identity. Two-factor authentication protects against phishing, social engineering, and password brute force attacks and secures your logins from attackers exploiting weak or stolen credentials.') }}

@if (!$reviewer->google2fa_status)
{!! $qrCode !!}
@else @endif

{{ translate('To use the two factor authentication, you have to install a Google Authenticator compatible app. Here are some that are currently available:') }}

  • {{ translate('Google Authenticator for iOS') }}
  • {{ translate('Google Authenticator for Android') }}
  • {{ translate('Microsoft Authenticator for iOS') }}
  • {{ translate('Microsoft Authenticator for Android') }}
  • @if (!$reviewer->google2fa_status) @else @endif @push('scripts_libs') @endpush @endsection