@extends('layouts.nova') @section('content') @php $birthDay = $birthDay ?? null; $birthMonth = $birthMonth ?? null; $birthYear = $birthYear ?? null; $avatarUserId = (int) ($user->id ?? auth()->id() ?? 0); $avatarHash = $user->icon ?? optional(auth()->user())->profile->avatar_hash ?? null; $currentAvatarUrl = !empty($avatarHash) ? \App\Support\AvatarUrl::forUser($avatarUserId, $avatarHash, 128) : \App\Support\AvatarUrl::default(); @endphp @push('styles') @endpush {{-- ── Hero background ──────────────────────────────────────────────── --}}
@if(!empty($heroBgUrl))
@endif
Your avatar

Edit Profile

Manage your account settings

@if ($errors->any())
Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@php $currentYear = date('Y'); $startYear = $currentYear - 100; $months = ['January','February','March','April','May','June','July','August','September','October','November','December']; @endphp
{{ $user->name ?? $user->username ?? 'Avatar' }}

Change Password

@csrf @method('PUT')
@endsection @push('scripts') @endpush