@extends('layouts.admin') @section('pageTitle') Best Insurance | Completed Leads @stop @section('pageCss') @stop @section('content')

Renew Application

    @if($errors->has()) @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach @endif
{!! Form::open(array('url' => 'account/renew-completed-lead/'.$information->id.'','id' => 'formValidation')) !!}
{{ Form::hidden('id', $information->id)}} {{ Form::hidden('premiseName', $information->premiseName)}}
   {!! Form::label('Date of issue:') !!}
{{ Form::text('txtDateOfIssue', date('d/m/Y'), array( 'readOnly' => 'true', 'class'=>'form-control')) }}
  Policy number:
{{$information->policy_number_full}}
  Title:
{{ Form::text('title', $information->title, array( 'class'=>'form-control','readOnly'=>true)) }}
  First Name:
{{ Form::text('fname', $information->fname, array( 'class'=>'form-control','readOnly'=>true)) }}
  Last Name:
{{ Form::text('lname', $information->lname, array( 'class'=>'form-control','readOnly'=>true)) }}
   {!! Form::label('Policy holder Address:') !!}
{{$address}}

Selected Address

{{ Form::hidden('form_new_line1', null, array( 'id' => 'form_new_line1' ,'class'=>'form-control'))}} {{ Form::hidden('form_new_line2', null, array('id' => 'form_new_line2', 'class'=>'form-control'))}} {{ Form::hidden('form_new_line3', null, array('id' => 'form_new_line3', 'class'=>'form-control'))}} {{ Form::hidden('form_new_line4', null, array('id' => 'form_new_line4', 'class'=>'form-control'))}} {{ Form::hidden('form_new_town', null, array('id' => 'form_new_town' ,'class'=>'form-control'))}} {{ Form::hidden('form_new_country', null, array('id' => 'form_new_country', 'class'=>'form-control'))}} {{ Form::hidden('form_new_postcode', null, array('id' => 'form_new_postcode', 'class'=>'form-control'))}}

If you are unable to find the address please enter the manual Address here

  Line1
{{ Form::text('line1', null, array( 'class'=>'form-control')) }}
  Line2
{{ Form::text('line2',null, array( 'class'=>'form-control')) }}
  Line3
{{ Form::text('line3', null, array( 'class'=>'form-control')) }}
  Line4
{{ Form::text('line4', null, array( 'class'=>'form-control')) }}
  Town
{{ Form::text('town', null, array( 'class'=>'form-control')) }}
  Country
{{ Form::text('country', null, array( 'class'=>'form-control')) }}
  Postal Code
{{ Form::text('postal_code', null, array( 'class'=>'form-control')) }}

SCHEDULE OF INSURANCE

{{$policy_prefix->pdf_underwritten_txt}}
  Policy Renewal Date:
{{ Form::text('editapppolicystartdate',$renwalday, array( 'id' => 'policyStartdate', 'class'=>'form-control')) }}
{!! Form::label('Policy End Date:') !!}
{{ Form::text('txtPolicyEndDate',$renewalEndDay, array( 'readOnly' => true, 'class'=>'form-control')) }}
  Cover type:
{{ Form::text('typeofcover',$information->typeofcover, array( 'readOnly' => true, 'class'=>'form-control','id' => 'typeofcover')) }}
  Excess Period:
{{ Form::text('excessperiod', $information->excessperiod, array( 'class'=>'form-control','id' => 'excessperiod','readOnly' => true)) }}
  Monthly Benefit:
{{ Form::text('monthlybenefit', $information->monthlybenefit, array( 'class'=>'form-control','id' => 'monthlybenefit','readOnly' => true)) }}
  Maximum Benefit Period:
{{ Form::text('renew_benefit_period', $information->benefit_period." Months", array( 'class'=>'form-control','id' => 'renew_benefit_period','readOnly' => true)) }}
  Monthly premium:
{{ Form::text('monthlycost', $monthly_premium, array( 'class'=>'form-control','id' => 'monthlycost','readOnly' => true)) }}
  Previous Monthly premium:
{{ Form::text('previous_monthly_premium', $information->monthlycost, array( 'class'=>'form-control','id' => 'previous_monthly_premium')) }}
  Previous Annual premium:
{{ Form::text('previous_annual_premium', $information->monthlycost*12, array( 'class'=>'form-control','id' => 'previous_annual_premium')) }}
{!! Form::label('Payment option:') !!}
Monthly direct debit
  Reason for update: *
  Select Payment option: *

    {{ Form::submit('Confirm',array('class'=>'btn btn-success submit___btn','rows' => '4')) }}
@stop @section('pageBottomJs') @stop