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

Edit Lead

Update lead details using the CRM theme form layout.
Back to Detail
@if($errors->any())
@endif
@csrf @method('PUT')
Contact Information
Maintain the core contact data for this lead.
@error('name')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
Pipeline Management
Adjust qualification, ownership, and follow-up notes.
@error('source_id')
{{ $message }}
@enderror
@error('lost_reason')
{{ $message }}
@enderror
Lead Snapshot
Lead ID #{{ $lead->id }}
Current Status {{ $lead->status }}
Current Assignee {{ $lead->assignedTo->name ?? '-' }}
Lead Score {{ $lead->lead_score ?? 0 }}/100
Cancel
@endsection @push('script') @endpush