Create New Lead
Add a new lead to your pipeline
← Back to Leads
@if(isset($prefill['client_id']) && $prefill['client_id'])
Creating new lead for customer
{{ $prefill['name'] ?? '' }}
— fields pre-filled from customer data
@endif
@csrf @if(isset($prefill['client_id']))
@endif
{{-- Section 1: Lead Information --}}
Lead Information
*
Status
Select Status
@foreach($statuses as $status)
isdefault ? $status->id : '') == $status->id ? 'selected' : '' }}>{{ $status->name }}
@endforeach
+
@error('status')
{{ $message }}
@enderror
*
Source
Select Source
@foreach($sources as $source)
id ? 'selected' : '' }}>{{ $source->name }}
@endforeach
+
@error('source')
{{ $message }}
@enderror
Assigned To
@foreach($admins as $admin)
guard('admin')->id()) == $admin->id ? 'selected' : '' }}>{{ $admin->name }}
@endforeach
{{-- Section 2: Contact Information --}}
Contact Information
*
Full Name
@error('name')
{{ $message }}
@enderror
Position/Title
Email Address
@error('email')
{{ $message }}
@enderror
Phone Number
Company Name
Website
{{-- Section 3: Address --}}
Address & Location
Street Address
{{ old('address', $prefill['address'] ?? '') }}
City
State
Country
Select Country
@foreach($countries as $country)
short_name ? 'selected' : '' }}>{{ $country->short_name }}
@endforeach
Zip/Postal Code
{{-- Section 4: Additional Details --}}
Additional Details
Lead Value (₹)
₹
Description / Notes
{{ old('description') }}
Visible to All Staff
When enabled, all team members can view and edit this lead
{{-- Section 5: Location --}}
Location
Location:
Title:
URL:
Remove
Click here to add link
{{-- Footer --}}
{{-- Status Modal --}}
Add New Status
Status Name
*
Color
Cancel
Save Status
{{-- Source Modal --}}
Add New Source
Source Name
*
Cancel
Save Source
{{-- Location Modal --}}
Add Location Link
Location
*
Title
URL
Cancel
Apply