@extends('layouts.app') @section('title', 'Add Lead') @section('content') @php $routePrefix = strtolower(auth()->user()->role->name); @endphp

Add New Lead

Create a lead using the CRM theme form layout.
Back to Leads
@if($errors->any())
@endif
@csrf
Contact Information
Primary details for the lead profile.
@error('name')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
Lead Details
Source, assignment, and initial qualification details.
@error('source_id')
{{ $message }}
@enderror
Leave blank to use round-robin assignment.
Publishing
Role Context {{ \Illuminate\Support\Str::of(auth()->user()->role->name)->replace('_', ' ')->title() }}
Company {{ auth()->user()->company->name ?? env('APP_NAME') }}
Cancel
@endsection