<?php \Laravel\Section::start('content'); ?>
	<h1>Delete</h1>
	Are you sure you want to delete :
	<h2>
		<span class="acchead">
		<?php echo  $game->div_name . ' - ' . $game->game_date  ; ?> <br/><br/>
		<?php echo  $game->host_team ; ?>
				<span class="score"><?php echo  $game->score_host ; ?> - <?php echo  $game->score_guest ; ?></span>
				<?php echo  $game->guest_team ; ?>
		</span>
	</h2>
	<br/><br/>
	<span>
		<?php echo  Form::open('game/delete', 'DELETE', array('style' => 'display:inline ;' )) ; ?>
		<?php echo  Form::hidden('id', $game->id) ; ?>
		<?php echo  Form::submit('delete' , array( 'class' => 'button')) ; ?>
		<?php echo  Form::close(); ?>
		<?php echo  HTML::link_to_route('game' , 'cancel', array($game->id), array('class'=>'button')) ; ?>
	</span>
<?php \Laravel\Section::stop(); ?>


<?php echo view('layouts.default')->with(get_defined_vars())->render(); ?>