@if (session('status') && session('status') !== 'password-updated')
{{-- My Account --}}
My Account
Profile Details
@php
$avatarInitials = collect(explode(' ', $user->name ?? ''))->filter()
->map(fn ($w) => mb_substr($w, 0, 1))->take(2)->implode('');
$avatarImageUrl = $user->avatar ? asset('storage/' . $user->avatar) : null;
@endphp
{{ $avatarImageUrl ? '' : strtoupper($avatarInitials) }}
@if ($user->avatar)
@endif
@php $timezones = collect(\DateTimeZone::listIdentifiers()); @endphp
Edit Profile
@if ($isNative)
Password
@else
You're signed in as a workspace user — your password is managed in the Worklance workspace.
@endif
{{-- Interface Settings --}}
@livewire('interface-settings')
{{-- Danger zone --}}
@if ($isNative)
Delete Account
Once your account is deleted, all its data is permanently erased. Enter your password to confirm.
@endif