@extends('layouts.super-admin') @section('title', 'Settings') @section('page_title', 'System Settings') @section('content')

Profile Information

Update your account's profile information and phone number.

@csrf @method('PATCH')
@if($user->profile_photo_path) {{ $user->name }} @else {{ substr($user->name, 0, 1) }} @endif
@error('photo')

{{ $message }}

@enderror
@error('name')

{{ $message }}

@enderror
@error('phone_number')

{{ $message }}

@enderror

Update Password

Ensure your account is using a long, random password to stay secure.

@csrf @method('PATCH')
@error('current_password')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror

Two-Factor Authentication

Add additional security to your account using two-factor authentication.

@if($user->two_factor_confirmed_at)

Status: Enabled

Your account is secured with two-factor authentication.

@csrf @method('DELETE')
@else

Status: Disabled

Configure your account to use 2FA for enhanced security.

@csrf
@endif
@endsection