@extends('network.layouts.app') @section('title', 'Contacts') @section('content')
@if (session('success')) @endif @if (session('error')) @if ($errors->any()) @endif @endif
@csrf @if (isset($contact)) @method('PUT') @endif

Leads Details

@error('assigned_to')
{{ $message }}
@enderror
@error('assigned_to')
{{ $message }}
@enderror
@error('first_name')
{{ $message }}
@enderror
@error('last_name')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('bphone')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('contact_type')
{{ $message }}
@enderror
@error('due_date')
{{ $message }}
@enderror
@php $sources = [ 'Drive By' => 'Drive By', 'Email' => 'Email', 'Farm And Ranch' => 'Farm And Ranch', 'Land And Farm' => 'Land And Farm', 'Land Watch' => 'Land Watch', 'Land.com' => 'Land.com', 'Landbroker MLS' => 'Landbroker MLS', 'LandFlip' => 'LandFlip', 'LandHub' => 'LandHub', 'Loopnet' => 'Loopnet', 'Luxury Ranch Real Estate' => 'Luxury Ranch Real Estate', 'Magazine' => 'Magazine', 'Mailer' => 'Mailer', 'MLS' => 'MLS', 'Network Site' => 'Network Site', 'Realtor' => 'Realtor', 'Referral' => 'Referral', 'Search Engine' => 'Search Engine', 'Sign' => 'Sign', 'Trade Show' => 'Trade Show', 'Trulia' => 'Trulia', 'Website' => 'Website', 'Zillow' => 'Zillow', 'Other' => 'Other', ]; $selectedSource = old('source', $contact->source ?? ''); @endphp
@error('source')
{{ $message }}
@enderror
@php $conversions = [ 'Agent Contact' => 'Agent Contact', 'Brochure Download' => 'Brochure Download', 'Brokerage Contact' => 'Brokerage Contact', 'By With Us' => 'By With Us', 'eBook Download' => 'eBook Download', 'Financing' => 'Financing', 'General Contact' => 'General Contact', 'Job Application' => 'Job Application', 'Listing Contact' => 'Listing Contact', 'Mailer Signup' => 'Mailer Signup', 'MLS Financing' => 'MLS Financing', 'MLS Listing Contact' => 'MLS Listing Contact', 'Newsletter Signup' => 'Newsletter Signup', 'Office Contact' => 'Office Contact', 'Sealed Bid' => 'Sealed Bid', 'Sell With Us' => 'Sell With Us', 'Appraisal Request' => 'Appraisal Request', 'Showing Request' => 'Showing Request', 'Other' => 'Other', ]; $selectedConversion = old('conversion', $contact->conversion ?? ''); @endphp
@error('conversion')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
@error('priority')
{{ $message }}
@enderror
@error('notes')
{{ $message }}
@enderror

Lead Location

@error('address')
{{ $message }}
@enderror
@error('address2')
{{ $message }}
@enderror
@if(empty($contact))
@else
@endif
@error('city')
{{ $message }}
@enderror
@error('zip')
{{ $message }}
@enderror
@endsection