@extends ('backend.layouts.app') @section ('title', trans('Leads Management') . ' | ' . trans('Details')) @section('page-header')

{{ trans('Leads Management') }} {{ trans('') }}

@endsection @section('content')

{{ trans('Validate') }}

@if($result->isvalidated == 1) @endif
@lang('First Name') {{ $result->fname }}
@lang('Last Name') {{ $result->lname }}
@lang('Primary Phone') {{ $result->pphone }}
@lang('Secondry Phone') {{ $result->sphone }}
@lang('Email') {{ $result->email }}
@lang('Address') {{ $result->address }}
@lang('City') {{ $result->city }}
@lang('State') {{ $result->state }}
@lang('Zip') {{ $result->zip }}
@lang('Gender') {{ $result->gender }}
@lang('Birthday') {{ $result->birthdate }}
@lang('Age') {{ $result->age }}
@lang('Self Assessed Credit') {{ $result->self_assessed_credit }}
@lang('Home Type') {{ $result->home_type }}
@lang('Year Built') {{ $result->year_built }}
@lang('Square Feet') {{ $result->square_feet }}
@lang('Bedrooms') {{ $result->bedrooms }}
@lang('Bathrooms') {{ $result->bathrooms }}
@lang('Construction Type') {{ $result->construction_type }}
@lang('Roof Surface') {{ $result->roof_surface }}
@lang('Foundation Type') {{ $result->foundation_type }}
@lang('Exterior Walls') {{ $result->exterior_walls }}
@lang('Garage Type') {{ $result->garage_type }}
@lang('Total Stories') {{ $result->total_stories }}
@lang('Electrical System') {{ $result->electrical_system }}
@lang('Fire Places') {{ $result->fireplaces }}
@lang('Validate') Valid Lead
@if($result->isverfied == 1) @endif
@lang('Pool') {{ $result->pool }}
@lang('Patio Deck') {{ $result->patio_deck }}
@lang('Alarm') {{ $result->alarm }}
@lang('Central AC') {{ $result->central_ac }}
@lang('Dead Bolt') {{ $result->dead_bolt }}
@lang('Smoke Detector') {{ $result->smoke_detector }}
@lang('Fire Extinguisher') {{ $result->fire_extinguisher }}
@lang('Smoker in Home') {{ $result->smoker_in_home }}
@lang('Dog in Home') {{ $result->dog_in_home }}
@lang('Near Fire Station') {{ $result->near_fire_station }}
@lang('Near Fire Hydrant') {{ $result->near_fire_hydrant }}
@lang('Currently Insured') {{ $result->currently_insured }}
@lang('Current Carrier') {{ $result->current_carrier }}
@lang('Residence Coverage Amount') {{ $result->residence_coverage_amount }}
@lang('Personal Property Amount') {{ $result->personal_property_amount }}
@lang('Personal Liability Amount') {{ $result->personal_liability_amount }}
@lang('Deductible Amount') {{ $result->deductible_amount }}
@lang('Years Continuously Covered') {{ $result->years_continuously_covered }}
@lang('Policy Expiration') {{ $result->policy_expiration }}
@lang('Property Address') {{ $result->property_address }}
@lang('Property City') {{ $result->property_city }}
@lang('Property State') {{ $result->property_state }}
@lang('Property Zip') {{ $result->property_zip }}
@lang('Property Use') {{ $result->property_use }}
@lang('Home Value') {{ $result->home_value }}
@lang('Verified') Verified Lead
{{ link_to_route('admin.customers.validleads.index', trans('Back'), [], ['class' => 'btn btn-danger btn-md']) }}
@stop