<html>
    <body>

        <h3>Insurance Application</h3>
<hr>
        <strong>Company Name:</strong> <?php echo $insuranceApplication->business_name; ?><br />
        <strong>Registration Number:</strong> <?php echo $insuranceApplication->registration_number; ?><br />
        <strong>Industry:</strong> <?php echo $insuranceApplication->industry; ?><br />
        <strong>Insured Book Amount R:</strong> <?php echo $insuranceApplication->insured_book_amount; ?><br />
        <strong>Current Overdue Amount:</strong> <?php echo $insuranceApplication->current_overdue_amount; ?><br />
        <strong>Percentage Overdue</strong> <?php echo $insuranceApplication->percentage_overdue; ?><br />
        <strong>Number of Debtors:</strong> <?php echo $insuranceApplication->debtors; ?><br />
        <strong>Previous Insurer:</strong> <?php echo $insuranceApplication->previous_insurer; ?><br />
        <strong>Current Insurer:</strong> <?php echo $insuranceApplication->current_insurer; ?><br />
        <strong>Contact Person:</strong> <?php echo $insuranceApplication->contact_person; ?><br />
        <strong>Telephone:</strong> <?php echo $insuranceApplication->telephone; ?><br />
        <strong>Fax:</strong> <?php echo $insuranceApplication->fax; ?><br />
        <strong>Cell:</strong> <?php echo $insuranceApplication->cell; ?><br />
        <strong>Email:</strong> <?php echo $insuranceApplication->email; ?><br />
        <strong>Physical Address:</strong> <?php echo $insuranceApplication->physical_address; ?><br />
        <strong>Postal Address:</strong> <?php echo $insuranceApplication->postal_address; ?><br />

    </body>
</html>
