
<?php \Laravel\Section::start('content'); ?>
	<h1>Edit season</h1>
	<?php echo  render('common.season_errors') ; ?>
	<?php echo  Form::open('season/update', 'PUT') ; ?>
	<p>
		<?php echo  Form::label('id', 'ID:') ; ?> <br/>
		<?php echo  Form::text('id', $season->season_id) ; ?>
	</p>
	<p>
		<?php echo  Form::label('label', 'Label:') ; ?> <br/>
		<?php echo  Form::text('label', $season->season_label) ; ?>
	</p>
	<p>
		<?php echo  Form::label('is_current', 'is current:') ; ?> <br/>
		<?php echo  Form::text('is_current', $season->is_current) ; ?>
	</p>
	<?php echo  Form::hidden('id', $season->id) ; ?>
	<p>
		<?php echo  Form::submit('save' , array( 'class' => 'button')) ; ?>
	</p>
	<?php echo  Form::close() ; ?>
<?php \Laravel\Section::stop(); ?>


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