@extends('layouts.app') @section('title', 'Edit Lead') @section('breadcrumb')Leads Edit {{ $lead->lead_number }}@endsection @section('content') @if (session('success')) @endif @if (session('error')) @endif
@csrf @method('PUT')

Lead Information

{{-- Designer --}}
@error('designer_id')
{{ $message }}
@enderror
{{-- Booking Date --}}
@error('booking_date')
{{ $message }}
@enderror
Cancel
@include('leads.partials._appointments_section') @include('leads.partials._followups_section')
@endsection