<?php $__env->startSection('title'); ?>
    Manage Pricing
<?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="/dashboard"><button style="    margin-left: 32rem;
                                                                                margin-right: -7rem;
                                                                                margin-top: 2rem;
                                                                                padding-bottom: 0.01rem;
                                                                                padding-left: 0rem;"><i style="font-size: 1rem;" class="fa fa-arrow-circle-left" aria-hidden="true"></i> Back</button></a>

    <div class="fullWidth darkGreyContainer">
        <div class="row">
            <div class="large-7 columns">
                <h1>Manage Pricing
</h1>

            </div>
            <div class="large-2 columns">


            </div>

        </div>
    </div>

    <div class="row contactbg">
        <div style="margin-left: 6rem;width: 90%;" class="large-12 columns">
            <table>
                <thead>
                    <tr>
                        <th width="18%"><i style="font-size:2rem;" class="fa fa-user" aria-hidden="true"></i>Company Name</th>
                        <th style="text-align: center;" width="5%"></i>Set Pricing</th>
                    </tr>
                </thead>
                <tbody>
                    <?php foreach($users as $user): ?>
                        <tr>
                            <td><?php echo $user->name; ?></td>
                            <td class="text-center"><a href=set-pricing/<?php echo $user->id; ?>"> <i style="font-size:2rem;" class="lightGrey fa fa-pencil-square-o" aria-hidden="true"></i> </a></td>
                        </tr>
                    <?php endforeach; ?>
                </tbody>
            </table>
            <div class="row">
                <div class="large-12 columns">
                    <div class="pagination"> <?php echo $users->links(); ?> </div>
                </div>
            </div>
        </div>
    </div>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
    <script src="<?php echo asset('js/scripts.js'); ?>"></script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>