@extends('layouts.admin') @section('pageTitle') Best Insurance | Completed Leads @stop @section('pageCss') @stop @section('content')
@if(isset($information->insurer)) {{--*/ $insurer = $information->insurer /*--}} @else {{--*/ $insurer = '' /*--}} @endif

{{$information->fname.' - '.$information->policy_number}}

@if($information->status == 0)

Rejected!

Comment: {{$information->comments_for_rejection}}

@endif
{!! Form::open(array('url' => 'account/update-completed-lead')) !!}
{{ Form::hidden('id', $information->id)}}
{!! Form::label('Policy Number') !!} :
{{$information->policy_number}}
{!! Form::label('Insurer') !!} :
{{$information->insurer}}
{!! Form::label('Date Of Birth ') !!} :
{{$information->dob}}
{!! Form::label('Occupation') !!} :
{{$information->occupation}}
{!! Form::label('Address') !!} :
{{$address}}
{!! Form::label('Telephone') !!} :
{{$information->telephone}}
{!! Form::label('Type Of Cover') !!} :
{{$information->typeofcover}}
{!! Form::label('Monthly Commitment') !!} :
{{$information->monthlycommitment}}
{!! Form::label('Monthly Benefit') !!} :
{{$information->monthlybenefit}}
{!! Form::label('Monthly Cost') !!} :
£{{ number_format((float)str_replace(',','',$information->monthlycost), 2, '.', '') }}
{!! Form::label('Excess period') !!} :
@if($information->excessperiod == 1) @elseif(!empty($information->excessperiod) ) @else @endif
{{$excessperiod}}
{!! Form::label('Account Number') !!} :
{{$information->accountnumber}}
{!! Form::label('IBAN') !!} :
{{$information->iban}}
{!! Form::label('Bank Bic') !!} :
{{$information->bankbic}}
{!! Form::label('Branch Bic') !!} :
{{$information->branchbic}}
{!! Form::label('Town') !!} :
{{$information->town}}
{!! Form::label('Bank Phone') !!} :
{{$information->bank_phone}}
{!! Form::label('Increasing Benefit ') !!} :
{!! Form::label('Premise Name') !!} :
{{$information->premiseName}}
{!! Form::label('Salary') !!} :
{{$information->salary}}
{!! Form::label('Name') !!} :
{{$information->title.' '.$information->fname.' '.$information->lname}}
{!! Form::label('Employee Status') !!} :
{{$information->emp_status}}
{!! Form::label('Employer Name ') !!} :
{{$information->employer_name}}
{!! Form::label('Postcode') !!} :
{{$information->postcode}}
{!! Form::label('Email') !!} :
{{$information->email}}
{!! Form::label('Insurance Startdate') !!} :
{{date('d-m-Y', strtotime($information->insurance_startdate))}}
{!! Form::label('Insurance Enddate') !!} :
@if($information->insurance_enddate == '0000-00-00') 00-00-0000 @else {{date('d-m-Y', strtotime($information->insurance_enddate))}} @endif
{!! Form::label('Type of Protection') !!} :
{{title_case(str_replace('_',' ',$information->typeofprotection))}}
{!! Form::label('Age') !!} :
{{$information->age}}
{!! Form::label('Benefit Period') !!} :
@if($information->benefit_period == 6)
6 Months
@elseif($information->benefit_period == 12)
12 Months
@elseif($information->benefit_period == 0 || $information->benefit_period == '')
12 Months
@else
@endif
{!! Form::label('Cover') !!} :
{{$information->cover}}
{!! Form::label('Account Name') !!} :
{{$information->accountname}}
{!! Form::label('Sortcode') !!} :
{{$information->sortcode}}
{!! Form::label('Bank') !!} :
{{$information->bank}}
{!! Form::label('Branch') !!} :
{{$information->branch}}
{!! Form::label('Branch Address') !!} :
{{$information->branch_address}}
{!! Form::label('Bank Postcode') !!} :
{{$information->bank_postcode}}
{!! Form::label('Affiliate Id') !!} :
{{$information->affid}}
{!! Form::label('Smoker') !!} :
{{$information->smoker}}
{!! Form::label('Lead Source Field') !!} :
{{$information->lead_source_field}}
@if(isset($productQuestions))
{{$productQuestions->question1}}
@if($gf != '')
{{$productQuestions->question1}}
@endif
{{$productQuestions->question2}}
{{$productQuestions->question3}}
{{$productQuestions->question4}}
{{$productQuestions->question5}}
{{$productQuestions->question6}}
{{$productQuestions->question7}}
{{$productQuestions->question8}}
@endif
@stop @section('pageBottomJs') @stop