@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'))
{{ session('status') }}
@endif
@if ($errors->any())
{{ $errors->first() }}
@endif