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

	<h1><?php echo  $team->team_name  ; ?> [<?php echo  $team->club_id ; ?>]</h1>
	<p>
		<?php echo  $team->season_id . ' - ' . $team->div_name  ; ?>
	</p>
	<p>
		<?php echo  $team->club_address  ; ?>
	</p>
	<br/><br/>
<span>
	<?php echo  HTML::link_to_route('teams' , 'teams', array(),array('class'=>'button')) ; ?> 
	<?php echo  HTML::link_to_route('edit_team' , 'edit', array($team->id), array('class'=>'button')) ; ?>
	<?php echo  Form::open('team/delete', 'DELETE', array('style' => 'display:inline ;' )) ; ?>
	<?php echo  Form::hidden('id', $team->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(); ?>