{{-- Creator Not Found — Contextual 404 Shown at /@:username when user doesn't exist. Variables: $requestedUsername string|null $trendingCreators Collection (max 6) $recentCreators Collection (max 6) --}} @extends('errors._layout', [ 'error_code' => 404, 'error_title' => 'Creator Not Found', 'error_message' => isset($requestedUsername) ? 'The creator "@' . $requestedUsername . '" does not exist on Skinbase.' : 'This creator profile does not exist.', ]) @section('badge', 'Creator Not Found') @section('primary-cta') {{-- Inline creator search --}}
@endsection @section('secondary-ctas') Top Creators Join Skinbase @endsection @section('recovery') {{-- Trending creators --}} @if(isset($trendingCreators) && $trendingCreators->count())

Top Creators

@foreach($trendingCreators->take(6) as $creator) {{ $creator['name'] }}

{{ $creator['name'] }}

{{ $creator['artworks_count'] }} uploads

@endforeach
@endif {{-- Recently joined creators --}} @if(isset($recentCreators) && $recentCreators->count())

Recently Joined

@foreach($recentCreators->take(6) as $creator) {{ $creator['name'] }}

{{ $creator['name'] }}

{{ $creator['artworks_count'] }} uploads

@endforeach
@endif @endsection