{{ $this->form }}
Save changes
{{-- Two-Factor Authentication Section --}}
Two-Factor Authentication
Add additional security to your account using two-factor authentication. @if($this->hasTwoFactorEnabled)

Two-factor authentication is enabled

Your account is protected with an authenticator app.

{{-- Trusted Devices --}} @if($this->trustedDevices->count() > 0)

Trusted Devices

These devices can skip 2FA verification for 90 days.

@foreach($this->trustedDevices as $device)

{{ $device->device_name }}

Trusted {{ $device->trusted_at->diffForHumans() }} @if($device->expires_at->isPast()) (Expired) @else · Expires {{ $device->expires_at->diffForHumans() }} @endif

@endforeach
@if($this->trustedDevices->count() > 1)
@endif
@endif
@csrf
Disable 2FA
@else

Two-factor authentication is not enabled

Enable 2FA to add an extra layer of security to your account.

@endif