@extends('themes.basic.user.layout') @section('no_index', true) @section('title', d_trans('Settings')) @section('header_title', d_trans('Settings')) @section('breadcrumbs', Breadcrumbs::render('user.settings', $user)) @section('content')
{{ d_trans('Account Details') }}
@csrf
{{ $user->getName() }}
{{ d_trans('Change Password') }}
@csrf
{{ d_trans('2FA Authentication') }}

{{ 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 ($user->isTwoFactorDisabled())
{!! $user->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:') }}

@include('themes.basic.partials.2fa-links')
@if ($user->isTwoFactorDisabled()) @else @endif @push('scripts_libs') @endpush @endsection