@extends('admin.layouts.grid') @section('title', admin_trans('Account details')) @section('container', 'container-max-lg') @section('content')
@csrf
{{ admin_trans('Personal details') }}
{{ $user->getName() }}
@csrf
{{ admin_trans('Password') }}
{{ admin_trans('2Factor Authentication') }} @if (!$user->google2fa_status) {{ admin_trans('Disabled') }} @else {{ admin_trans('Enabled') }} @endif

{{ admin_trans('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 (!$user->google2fa_status)
{!! $qrCode !!}
@csrf
@else
@csrf
@endif

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

  • {{ admin_trans('Google Authenticator for iOS') }}
  • {{ admin_trans('Google Authenticator for Android') }}
  • {{ admin_trans('Microsoft Authenticator for iOS') }}
  • {{ admin_trans('Microsoft Authenticator for Android') }}
  • @push('scripts_libs') @endpush @endsection