@extends('layouts.frontend') @section('title', 'View Lead') @section('pageCss') @stop @section('content') Leads List View Lead @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') !!} : @if(isset($policy_prefix)) {{--*/ $policy_prefix = $policy_prefix->policy_prefix /*--}} @else {{--*/ $policy_prefix = '' /*--}} @endif {{$policy_prefix.$information->policy_number}} {!! 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('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') !!} : {{$information->insurance_startdate}} {!! 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 == 18) 18 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}} @if(!empty($questions)) {!! $underwriting_questions->q1 !!} {{'- '.$questions->q1}} {!! $underwriting_questions->q2 !!} {{'- '.$questions->q2}} {!! $underwriting_questions->q3 !!} {!! $underwriting_questions->q4 !!} {{'- '.$questions->q4}} {!! $underwriting_questions->q5 !!} {{'- '.$questions->q5}} {!! $underwriting_questions->q6 !!} {{'- '.$questions->q6}} {!! $underwriting_questions->q7 !!} {{'- '.$questions->q7}} @endif @stop @section('pageBottomJs') @stop
Comment: {{$information->comments_for_rejection}}