<?php $__env->startSection('title'); ?>
    Edit Pricing
<?php $__env->stopSection(); ?>

<?php $__env->startSection('styles'); ?>
<style>
  input[type="text"] {
  background-color: #828282;
  border-color: #696969;
  color:#fff;
  }

  input[type="text"]:focus {
  color:#000000;
  }
</style>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>

<?php echo $__env->make('partials.dashboard-menu', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

<h1>Set Pricing for <?php echo $company; ?></h1>
<a class="myButton" style="width:5% ;text-align: center;margin-bottom: 1rem;" href="/manage-invoices"><i class="fa fa-chevron-left" aria-hidden="true"></i> Back</a>

 <?php echo Form::open(['files' => true]); ?>

<table class="table3">
    <thead>
        <tr>
            <th scope="col" abbr="Medium"></th>
            <th style="width:33%;" scope="col" abbr="Starter">Status Data Price</th>
            <th scope="col" abbr="Medium">Prestige Credit Price</th>
            <!--<th style="width:50%;" scope="col" abbr="Starter">Profit Margin</th> -->
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Tranunion On-file Report</td>
            <td>R65, 00</td>
            <td><?php echo Form::text('transunion_on_file'); ?></td>
            
        </tr>
        <tr>
            <td>Tranunion Principal Deeds Report</td>
            <td>R40,00</td>
            <td><?php echo Form::text('transunion_principal_deeds'); ?></td>
            
        </tr>
        <tr>
            <td>Compuscan Principal Report</td>
            <td>R40,00</td>
            <td><?php echo Form::text('compuscan_principal_on_file'); ?></td>
            
        </tr>
        <tr>
            <td>Compuscan Company Deeds Report</td>
            <td>R40,00</td>
            <td><?php echo Form::text('compuscan_company_deeds'); ?></td>

        </tr>
        <tr>
            <td>Transunion Principal Bank Code</td>
            <td>R65,00</td>
            <td><?php echo Form::text('transunion_24hr_principal_bank_code'); ?></td>

        </tr>
        <tr>
            <td>Transunion Principal Bank Code Express</td>
            <td>R75,00</td>
            <td><?php echo Form::text('transunion_4hr_principal_bank_code'); ?></td>

        </tr>
        <tr>
            <td>Compuscan On-file Report</td>
            <td>R65,00</td>
            <td><?php echo Form::text('compuscan_on_file'); ?></td>
        </tr>
        <tr>
            <td>Compuscan 24 Hour Bank Code</td>
            <td>R65,00</td>
            <td><?php echo Form::text('compuscan_24hr_bank_code'); ?></td>

        </tr>
        <tr>
            <td>Transunion 24 Hour Bank Code</td>
            <td>R65,00</td>
            <td><?php echo Form::text('transunion_24hr_bank_code'); ?></td>

        </tr>
        <tr>
            <td>Compuscan Bank Code Express</td>
            <td>R75,00</td>
            <td><?php echo Form::text('compuscan_4hr_bank_code'); ?></td>

        </tr>
        <tr>
            <td>Compuscan Principal Bank Code</td>
            <td>R65,00</td>
            <td><?php echo Form::text('compuscan_24hr_principal_bank_code'); ?></td>

        </tr>
        <tr>
            <td>Compuscan Principal Bank Code Express</td>
            <td>R75,00</td>
            <td><?php echo Form::text('compuscan_4hr_principal_bank_code'); ?></td>

        </tr>
        <tr>
            <td>Status Data Researched Report</td>
            <td>R650,00</td>
            <td><?php echo Form::text('status_data_detailed'); ?></td>

        </tr>
        <tr>
            <td>Compuscan Researched Report</td>
            <td>R 750,00</td>
            <td><?php echo Form::text('compuscan_detailed'); ?></td>

         </tr>
         <tr>
              <td>Status Data Quick Fix Report</td>
              <td>R350,00</td>
              <td><?php echo Form::text('quick_fix'); ?></td>

         </tr>

    <tr>
         <td>Compuscan Detailed Report (24 hours)</td>
         <td>R350,00</td>
         <td><?php echo Form::text('compuscan_detailed'); ?></td>

    </tr>
    <tr>
         <td>Compuscan Comprehensive Report (24 hours)</td>
         <td>R350,00</td>
         <td><?php echo Form::text('compuscan_comprehensive'); ?></td>

    </tr>
    <tr>
         <td>Status Data Comprehensive Report (24 hours)</td>
         <td>R350,00</td>
         <td><?php echo Form::text('status_data_comprehensive'); ?></td>

    </tr>
    <tr>
             <td>Inoxico Quick View Report</td>
             <td>R143,00</td>
             <td><?php echo Form::text('inoxico_quick'); ?></td>
        </tr>
        <tr>
             <td>Inoxico Basic Report</td>
             <td>R530,00</td>
             <td><?php echo Form::text('inoxico_basic'); ?></td>
        </tr>
        <tr>
             <td>Inoxico Detailed Report</td>
             <td>R822,00</td>
             <td><?php echo Form::text('inoxico_detailed'); ?></td>
        </tr>
        <tr>
             <td>Inoxico Comprehensive Report</td>
             <td>R1299,00</td>
             <td><?php echo Form::text('inoxico_comprehensive'); ?></td>
        </tr>

    </tbody>
</table>

<button style="display:block;margin-left: auto;margin-right:auto;" class="myButton" type="submit">Set Pricing</button>

<?php echo Form::close(); ?>

<hr>
<?php echo $__env->make('partials.footer', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>