@extends('tyro-dashboard::layouts.admin') @section('title', 'Profiles') @section('content') @if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
@endif
@if ($search !== '' || $companyId) Clear @endif
@forelse ($profiles as $profile) @empty @endforelse
Profile Owner Company Slug Status Actions
{{ $profile->full_name }}
{{ $profile->role_title ?: '—' }}
{{ $profile->user?->name ?? '—' }}
{{ $profile->user?->email }}
{{ $profile->user?->company?->name ?? '—' }}
@csrf
@if ($profile->is_published) Live @else Draft @endif View Edit
@csrf
No profiles match. {{ $search !== '' || $companyId ? 'Try clearing your filters.' : '' }}
{{ $profiles->links() }}
@endsection