@extends('admin.layouts.app') @section('container', 'dashboard-container-md') @section('title', d_trans('Account Settings')) @section('header_title', d_trans('Account Settings')) @section('content')
{{ d_trans('Account Details') }}
@csrf
{{ $admin->getName() }}
{{ d_trans('Change Password') }}
@csrf
{{ d_trans('Two-Factor Authentication') }} @if (!$admin->two_factor_status) {{ d_trans('Disabled') }} @else {{ d_trans('Enabled') }} @endif

{{ d_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 ($admin->isTwoFactorDisabled())
{!! $admin->getTwoFactorQrCode() !!}
@else
@endif

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

  • {{ d_trans('Google Authenticator for iOS') }}
  • {{ d_trans('Google Authenticator for Android') }}
  • {{ d_trans('Microsoft Authenticator for iOS') }}
  • {{ d_trans('Microsoft Authenticator for Android') }}
  • @if ($admin->isTwoFactorDisabled()) @else @endif @push('scripts_libs') @endpush @endsection