{{ __('Add Leads/Prospects') }}
@csrf @include('leads.partials.form-body', ['lead' => null, 'isEdit' => false, 'compact' => true])
@include('leads.partials.form-interaction-scripts')

Recent Leads

{{ number_format(count($recentLeads ?? [])) }}

@forelse (($recentLeads ?? []) as $lead) @empty @endforelse
ID Name Stage Created
#{{ $lead->id }}
{{ $lead->displayName() }}
{{ $lead->isActiveLead() ? 'Active' : 'Prospect' }} {{ optional($lead->created_at)->format('m-d H:i') }}
No leads yet.