<?php $__env->startSection('title'); ?> Search License Plates <?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
<script src="/js/search.js"></script>
<?php $__env->stopSection(); ?>

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

<div class='col-lg-4 col-lg-offset-4'>

    <h1>Search License Plates</h1>

    <div class="form-group">
        <input type="hidden" id="_token" name="_token" value="<?php echo csrf_token(); ?>">
        <input type="text" id="search-input" class="form-control" placeholder="Search" onkeyup="search(this.value)">
    </div>

    <div id="search-results" class="table-responsive">
        <table class="table table-bordered table-striped">

            <thead>
            <tr>
                <th>License Plate</th>
                <th>Make</th>
                <th>Model</th>
                <th>Colour</th>
            </tr>
            </thead>

            <tbody>
            </tbody>

        </table>
    </div>

</div>

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