<?php $__env->startSection('title'); ?>
     Credit Check + BCD
<?php $__env->stopSection(); ?>

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

</style>
<?php $__env->stopSection(); ?>

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

<img style="max-width: 30%;display: block; margin-top: -3rem; margin-left: auto; margin-right: auto;" src="/img/Prestige_Logo.jpg" />
<a  href="/bank-code-options"><button style="    margin-left: 32rem;
                                         padding-bottom: 0.01rem;
                                         margin-top: 2rem;
                                         padding-left: 0rem;
                                         padding-right: 3rem;
                                         background-color: #093c68;
                                         padding-top: 1rem;"><i style="font-size: 1rem;" class="fa fa-arrow-circle-left" aria-hidden="true"></i>Back</button></a>

<h1>Request Onfile Report with Bank Code Data</h1>

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


<div class="row">
    <div class="large-6 columns">
        <label>Business name <small class="red"><?php echo $errors->first('businessName'); ?></small></label>
        <?php echo Form::text('businessName'); ?>

    </div>
    <div class="large-6 columns">
        <label>Registration Number <small class="red"><?php echo $errors->first('regNumber'); ?></small></label>
        <?php echo Form::text('regNumber'); ?>

    </div>
</div>

<button class="myButton" type="submit">Submit</button>

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




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