@extends('layouts.nova.content-layout') @section('page-content')

Last updated:

Our volunteer staff help keep Skinbase running — from moderation and technical maintenance to community support. If you need assistance, reach out to any team member listed below or use the contact form.

@if ($staffByRole->isEmpty())

We're building our team. Check back soon!

@else
@foreach ($roleLabels as $roleSlug => $roleLabel) @if ($staffByRole->has($roleSlug))

{{ $roleLabel }}

@foreach ($staffByRole[$roleSlug] as $member) @php $avatarUrl = $member->profile?->avatar_url; $profileUrl = '/@' . $member->username; @endphp
{{-- Avatar --}} @if ($avatarUrl) {{ $member->username }} @else
{{ substr($member->username, 0, 1) }}
@endif
{{-- Info --}}
{{ $member->username }} @if ($member->name && $member->name !== $member->username)

{{ $member->name }}

@endif {{ ucfirst($roleSlug) }} @if ($member->profile?->bio)

{{ $member->profile->bio }}

@endif
@endforeach
@endif @endforeach
@endif {{-- Footer note: contact staff --}}
Need help? Start with the Contact / Apply form or send a private message to any staff member.
@endsection