
<?php $__env->startSection('subtitle'); ?>
Delete Game <?php echo $game -> id; ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>

<div class="well">
    <?php echo Form::open( array('url' => action('GameController@destroy', array('id' => $game -> id)), 'method' => 'DELETE', 'class' => 'form-horizontal')); ?>
    <fieldset>
        <legend>
            <h2>Delete Game</h2>
            <p>
                Are you sure you want to delete game <?php echo $game -> id; ?>? This process is irreversible.
            </p>
        </legend>
        <div class="form-group">
            <div class="col-lg-6">
                <a class="btn btn-default" href="<?php echo action('GameController@index'); ?>">
                    Cancel
                </a>
                <button type="submit" class="btn btn-danger">
                    Delete
                </button>
            </div>
        </div>
    </fieldset>
    <?php echo Form::close(); ?>
</div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>