@extends('layouts.frontend') @section('title', 'View Lead Information') @section('content')

View Lead Information @if(!empty($information->accountnumber)) [ Complete ] @else [ Incomplete ] @endif

Back To User Dashboard

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

Application Regected!

Comment: {{$information->comments_for_rejection}}

@endif
{!! Form::open(array('url' => 'account/update-completed-lead')) !!}
{{ Form::hidden('id', $information->id)}}
{!! Form::label('Policy Number') !!} :
@if(!empty($policy_prefix)) {{$policy_prefix->policy_prefix.$information->policy_number}} @else - @endif
{!! Form::label('Name') !!} :
{{$information->title.$information->fname.$information->lname}}
{!! Form::label('Date Of Birth ') !!} :
{{$information->dob}}
{!! Form::label('Employee Status') !!} :
{{$information->emp_status}}
{!! Form::label('Occupation') !!} :
{{$information->occupation}}
{!! Form::label('Employer Name ') !!} :
{{$information->employer_name}}
{!! Form::label('Address') !!} :
{{$address}}
{!! Form::label('Postcode') !!} :
{{$information->postcode}}
{!! Form::label('Email') !!} :
{{$information->email}}
{!! Form::label('Telephone') !!} :
{{$information->telephone}}
{!! Form::label('Insurance Startdate') !!} :
{{$information->insurance_startdate}}
{!! Form::label('Type Of Cover') !!} :
{{$information->typeofcover}}
{!! Form::label('Type of Protection') !!} :
{{title_case(str_replace('_',' ',$information->typeofprotection))}}
{!! Form::label('Monthly Commitment') !!} :
{{$information->monthlycommitment}}
{!! Form::label('Age') !!} :
{{$information->age}}
{!! Form::label('Monthly Benefit') !!} :
{{$information->monthlybenefit}}
{!! Form::label('Benefit Period') !!} :
@if($information->benefit_period == 6)
6 Months
@elseif($information->benefit_period == 12)
12 Months
@elseif($information->benefit_period == 18)
18 Months
@else
@endif
{!! Form::label('Monthly Cost') !!} :
£ {{ number_format((float)str_replace(',','',$information->monthlycost), 2, '.', '') }}
{!! Form::label('Cover') !!} :
{{$information->cover}}
{!! Form::label('Excess period') !!} :
@if($information->excessperiod == 1) @elseif(!empty($information->excessperiod) ) @else @endif
{{$excessperiod}}
{!! Form::label('Account Name') !!} :
{{$information->accountname}}
{!! Form::label('Account Number') !!} :
{{$information->accountnumber}}
{!! Form::label('Sortcode') !!} :
{{$information->sortcode}}
{!! Form::label('IBAN') !!} :
{{$information->iban}}
{!! Form::label('Bank') !!} :
{{$information->bank}}
{!! Form::label('Bank Bic') !!} :
{{$information->bankbic}}
{!! Form::label('Branch') !!} :
{{$information->branch}}
{!! Form::label('Branch Bic') !!} :
{{$information->branchbic}}
{!! Form::label('Branch Address') !!} :
{{$information->branch_address}}
{!! Form::label('Town') !!} :
{{$information->town}}
{!! Form::label('Bank Postcode') !!} :
{{$information->bank_postcode}}
{!! Form::label('Bank Phone') !!} :
{{$information->bank_phone}}
@if(!empty($questions))
{{ Form::label('Do you permanently reside and work within the UK, Channel Islands or Isle of Man?') }}
{{'- '.$questions->question1}}
{{ Form::label('Have you or do you suffer from any major or chronic medical conditions or are you currently taking any medication or awaiting referral for consultation or treatment?') }}
{{'- '.$questions->question2}}
{{ Form::label('Are you now and have you been for the past six months in continuous permanent employment, contract employment or self employment for more than 16 hours per week?') }}
{{'- '.$questions->question3}}
{{ Form::label('Are you subject to any ongoing enquiry or disciplinary action by your employer') }}
{{'- '.$questions->question4}}
{{ Form::label('Are you aware of any impending unemployment or a risk you may become unemployed. If you are self-employed, you must not be aware of any reasons which would mean your business is likely to close;') }}
{{'- '.$questions->question5}}
{{ Form::label('Do you know of any redundancies, restructure, reorganisation, financial or contractual threats within the department you work in, even if you do not believe these actions will result in you becoming unemployed? ') }}
{{'- '.$questions->question6}}
{{ Form::label('Are you aware of any circumstances which may lead to you giving up work to become a full-time carer.') }}
{{'- '.$questions->question7}}
{{ Form::label('Have you ever been convicted of a criminal offence or received a police caution for fraud or theft or any financial crime(s)?') }}
{{'- '.$questions->question7}}
@endif
@stop @section('pageBottomJs') @stop