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

MTA

{!! Form::open(array('url' => 'account/completed-leads/mta-completed-lead/'.$information->id.'','id' => 'formValidation')) !!}
{{ Form::hidden('id', $information->id)}} {{ Form::hidden('premiseName', $information->premiseName)}}
   {!! Form::label('Date of issue:') !!}
{{ Form::text('txtDateOfIssue', $insurance_startdate, array( 'readOnly' => 'true', 'class'=>'form-control')) }}
  Policy number:
{{ Form::text('policy_number', $information->policy_number_full, array('readOnly' => 'true', 'class'=>'form-')) }}
  Title:
{{ Form::select('title', [ '0' => 'Select', 'Mr.' => 'Mr.', 'Ms.' => 'Ms.', 'Mrs.' => 'Mrs.', 'Dr.' => 'Dr.', 'Rev.' => 'Rev.', 'Miss.' => 'Miss.'],$information->title, ['class' => 'form-control select2 select2-hidden-accessible'] ) }}
  First Name:
{{ Form::text('fname', $information->fname, array( 'class'=>'form-control')) }}
  Last Name:
{{ Form::text('lname', $information->lname, array( 'class'=>'form-control')) }}
   {!! Form::label('Policy holder Address:') !!}
{{$address}}

  
Find Address Add Address Manually
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}}
  MTA Date:
{{ Form::text('policyStartdate', '', array( 'id' => 'policyStartdate', 'class'=>'form-control','data-date-format'=>'dd/mm/yyyy')) }}
{!! Form::label('Policy End Date:') !!}
{{ Form::text('txtPolicyEndDate', date('d/m/Y',strtotime($information->insurance_enddate)), array( 'readOnly' => true, 'class'=>'form-control')) }}
  Cover type:
{{ Form::select('typeofcover', [ '0' => 'select', 'ASU' => 'Unemployment, Accident & Sickness', 'U' => 'Unemployment only', 'AS' => 'Accident & Sickness only', 'AS1U30' => 'AS1U30 (Standard Mortgage Aviva only)', 'AS30U1' => 'AS30U1 (Standard Mortgage Aviva only)', ],$information->typeofcover, array('class'=>'form-control','id' => 'typeofcover')) }}
  Excess Period:
  Monthly Benefit:
{{ Form::text('monthlybenefit', $information->monthlybenefit, array( 'class'=>'form-control','id' => 'monthlybenefit')) }}
{!! Form::label('Maximum Benefit Period:') !!}
{{$information->benefit_period.' Months'}} {{ Form::hidden('benefit_period',$information->benefit_period, array('class'=>'form-control')) }}
  Monthly premium:
{{ Form::text('monthlycost', $information->monthlycost, array( 'class'=>'form-control','id' => 'monthlycost')) }}
  Payment option:
Monthly direct debit
  Date of Birth:
{{ Form::text('dob', $information->dob, array( 'id' => 'dob', 'class'=>'form-control','data-date-format'=>'dd/mm/yyyy')) }}
  Reason for update: *
{{ Form::hidden('insurer_type', $information->insurer, array( 'class'=>'form-control')) }}
    {{ Form::submit('Confirm',array('class'=>'btn btn-success','rows' => '4')) }}
@if(isset($downloadBtn)) {!! $downloadBtn !!} @endif @stop @section('pageBottomJs') @stop