<?php \Laravel\Section::start('content'); ?>
<script> var persons = <?php echo  $persons ; ?>;</script>
   <h1>New player</h1>
	<?php echo  render('common.player_errors') ; ?>

   <?php echo  Form::open('player/create', 'POST') ; ?>

	<p>
	   <?php echo  Form::label('season_id', 'Season:') ; ?> <br/>
	   <?php echo  Form::select('season_id', $season_options, Input::old('season_id')) ; ?>
	</p>
 	<p>
	   <?php echo  Form::label('team_id', 'Team:') ; ?> <br/>
	   <?php echo  Form::select('team_id', $team_options, Input::old('team_id')) ; ?>
	</p>
 	<p>
	   <?php echo  Form::label('player_find', 'Federation player:') ; ?> <br/>
	   <?php echo  Form::text('player_find', '' ) ; ?>
	   <?php echo  Form::text('player_id', Input::old('player_id'), array('id'=>'player_id')) ; ?>
	</p>
	<p>
	   <?php echo  Form::label('person_find', 'Euroclub member:') ; ?> <br/>
	   <?php echo  Form::text('person_find', '' ) ; ?>
	   <?php echo  Form::text('person_id', Input::old('person_id'), array('id'=>'person_id')) ; ?>
	</p>
	<p>
		<?php echo  Form::submit('save' , array( 'class' => 'button')) ; ?>
		<?php echo  HTML::link_to_route('players' , 'cancel', null, array( 'class'=>'button',)) ; ?>
	</p>
  <?php echo  Form::close() ; ?>
<?php \Laravel\Section::stop(); ?>


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