{{ $clinic?->name }} Assistants
@if(session('successMessage'))
{{ session('successMessage') }}
@endif
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if(!empty($nameSuggestions))
    @foreach($nameSuggestions as $sug)
  • {{ $sug->name }} ({{ $sug->mobile }}) - {{ $sug->position }}
  • @endforeach
@endif
@if(!empty($mobileSuggestions))
    @foreach($mobileSuggestions as $sug)
  • {{ $sug->name }} ({{ $sug->mobile }}) - {{ $sug->position }}
  • @endforeach
@endif
@forelse($assistants as $assistant)
@if($editingId === $assistant->id)
@else
{{ $assistant->name }}
Phone: {{ $assistant->mobile }} | Position: {{ $assistant->position ?? '—' }}

@endif
@empty
No assistants found for this clinic.
@endforelse