@extends('admin.layout') @section('title', 'Pending agent signups') @section('page-title', 'Pending agent signups') @section('page-icon', 'person-check') @section('content')

Approve or reject agents who registered online. Team leads only see requests for their own teams.

@forelse($users as $u) @empty @endforelse
Name Email Company Team Requested Actions
{{ $u->name }} {{ $u->email }} {{ $u->company?->name ?? '—' }} {{ $u->team?->name ?? '—' }} {{ $u->created_at->format('d M Y H:i') }}
@csrf
@csrf
No pending signups.
@endsection