@extends('layouts.app') @section('title_full', __('Authentication').' - '.$user->getFullName()) @section('body_attrs')@parent data-user_id="{{ $user->id }}"@endsection @section('sidebar') @include('partials/sidebar_menu_toggle') @include('users/sidebar_menu') @endsection @section('content')
{{ __('Authentication') }}
@include('partials/flash_messages')
{{ csrf_field() }}
@if ($tfa_enabled && !$not_own_profile)

{{ __("If you're not able to use your mobile device, you can use a recovery code to log in. Each code can only be used once.") }}

@endif
@endsection @section('javascript') @parent initUserAuthSettings({{ (int)$tfa_enabled }}, '{{ route('twofactorauth.user_auth_settings_confirm', ['id' => $user->id]) }}'); @endsection