
<?php \Laravel\Section::start('content'); ?>
	<h1>Add a new season</h1>
	<?php echo  render('common.season_errors') ; ?>
	<?php echo  Form::open('season/create', 'POST') ; ?>

	<p>
		<?php echo  Form::label('id', 'ID:') ; ?> <br/>
		<?php echo  Form::text('id', Input::old('id')) ; ?>
	</p>
	<p>
		<?php echo  Form::label('label', 'Label:') ; ?> <br/>
		<?php echo  Form::text('label', Input::old('label')) ; ?>
	</p>
	<p>
		<?php echo  Form::label('is_current', 'is current:') ; ?> <br/>
		<?php echo  Form::text('is_current', Input::old('is_current')) ; ?>
	</p>
	<p>
		<?php echo  Form::submit('add season' , array( 'class' => 'button')) ; ?>
	</p>
	<?php echo  Form::close() ; ?>
<?php \Laravel\Section::stop(); ?>


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