
<?php \Laravel\Section::start('content'); ?>

	<h1><?php echo  $season->season_label . ' [' . $season->id . ']'  ; ?></h1>

<span>
	<?php echo  HTML::link_to_route('seasons' , 'Seasons', array(),array('class'=>'button')) ; ?> 
	<?php echo  HTML::link_to_route('edit_season' , 'Edit season', array($season->id), array('class'=>'button')) ; ?>
	<?php echo  Form::open('season/delete', 'DELETE', array('style' => 'display:inline ;' )) ; ?>
	<?php echo  Form::hidden('id', $season->id) ; ?>
	<?php echo  Form::submit('delete' , array( 'class' => 'button')) ; ?>
	<?php echo  Form::close(); ?>
</span>

<?php \Laravel\Section::stop(); ?>


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