@include('frontend.partials.head', ['title' => 'Fily | Provider Profile']) @include('frontend.dashboard.partials.styles') @php $providerName = $provider?->business_name ?: ($provider?->name ?: 'Provider'); $providerInitial = strtoupper(substr($providerName, 0, 1)); $profileComplete = (bool) $provider?->isProfileComplete(); @endphp @include('frontend.partials.header')
@include('frontend.dashboard.provider.partials.hero', [ 'provider' => $provider, 'kicker' => 'Provider dashboard', 'title' => 'Provider profile', 'description' => 'Complete business details customers see before contacting you.', ])
@include('frontend.dashboard.provider.partials.sidebar', ['provider' => $provider, 'active' => 'profile', 'profileComplete' => $profileComplete])
@if (session('status')) @endif @if ($errors->any()) @endif
@csrf
@include('frontend.partials.footer')