@extends('layouts.frontend') @section('title', 'Cover page') @section('content')

{{ $product_details->product_name}}

@if(Session::get('success'))
{{Session::get('success')}}
@endif @if(Session::get('failure'))
{{Session::get('failure')}}
@endif
  • Personal Details
  • Cover
  • Bank Details
  • Confirmation
@foreach ($questions as $key=>$value) @if(isset($value) && $value != '')
{!! $value !!}
$key == 'Yes' ? "checked":"") }}/> Yes $key == 'No' ? "checked":"") }}/>No
@if($key == 'question2' && $personal_data->product_id != 13) @endif
@endif @endforeach
   

@include('slices.frontend.get-a-quot.right_bottom')
@endsection @section('page-script') @stop