
<?php $__env->startSection('subtitle'); ?>
Import Weapons/Attachments
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>

<div class="row">
    <div class="col-lg-12">
        <h1>Import</h1>
        <ol class="breadcrumb">
            <li>
                <i class="fa fa-dashboard"></i>
                <a href="<?php echo route('adminDashboard'); ?>">
                    Dashboard
                </a>
            </li>
            <li>
                <i class="icon-file-alt"></i>
                <a href="<?php echo route('admin.game.index'); ?>">
                    Games
                </a>
            </li>
            <li>
                <i class="icon-file-alt"></i>
                <a href="<?php echo action('GameController@show', array('id' => $game -> id)); ?>">
                    <?php echo $game -> id; ?>
                </a>
            </li>
            <li class="active">
                <i class="icon-file-alt"></i> Import
            </li>
        </ol>
    </div>
</div><!-- /.row -->
<div class="row">
    <div class="col-lg-7">
        <div class="well">
            <?php echo Form::open( array('action' => array('ImportController@processImport', $game -> id), 'class' => 'form-horizontal', 'files' => true)); ?>
            <fieldset>
                <div class="form-group">
                    <div class="col-lg-12">
                        <?php echo Form::label('Spreadsheet', 'Upload Spreadsheet: ', array('class' => 'control-label')); ?>
                        <?php echo Form::file('spreadsheet', '', array('class' => 'form-control input-lg')); ?>
                    </div>
                </div>
                <div class="form-group">
                    <div class="col-lg-12">
                        <button type="submit" class="btn btn-primary">
                            Import
                        </button>
                    </div>
                </div>
            </fieldset>
            <?php echo Form::close(); ?>
        </div>
    </div>
    <div class="col-lg-5">
        <div class="well">
        <p>The import requires a .csv file in a certain format.</p>
        <p><strong><a href="/files/import example.csv">Download example file.</a></strong></p>
        </div>
    </div>
</div>

<?php $__env->stopSection(); ?>

<?php echo $__env->make('admin.layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>