@include('frontend.partials.head', ['title' => 'Fily | Customer Profile']) @include('frontend.dashboard.partials.styles') @php $customerName = $customer?->name ?: 'Customer'; $customerInitial = strtoupper(substr($customerName, 0, 1)); $profileComplete = (bool) $customer?->isProfileComplete(); @endphp @include('frontend.partials.header')
@include('frontend.dashboard.customer.partials.hero', [ 'customer' => $customer, 'kicker' => 'Customer dashboard', 'title' => 'Profile settings', 'description' => 'Complete the required fields to continue to your dashboard.', ])
@include('frontend.dashboard.customer.partials.sidebar', ['customer' => $customer, 'active' => 'profile', 'profileComplete' => $profileComplete])
@if (session('status')) @endif @if ($errors->any()) @endif
@csrf
@include('frontend.partials.footer')