@extends('layouts.admin') @section('title', 'Create Lead - PropertyConnect') @push('styles') @endpush @section('content')

Create New Lead

Fill in the details to add a new lead

{{-- Validation Errors --}} @if ($errors->any())
Error! Please check the form below for errors.
@endif
@csrf {{-- Personal Info --}}
Personal Information
@error('first_name')
{{ $message }}
@enderror
@error('last_name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror

{{-- Lead Details --}}
Lead Details

{{-- Lead Organization: Tagging System --}}
Lead Tags
@php $tags = ['hot', 'warm', 'cold', 'follow-up']; $selectedTags = old('tags', []); @endphp
@foreach($tags as $tag)
@endforeach

{{-- Custom Fields --}}
Custom Fields

Add Company-specific information and notes:

{{--
--}} {{-- Buttons --}}
Cancel
@endsection {{-- @push('scripts') @endpush --}}