@layout('layouts.default') @section('content')

New player

{{ render('common.player_errors') }} {{ Form::open('player/create', 'POST') }}

{{ Form::label('season_id', 'Season:') }}
{{ Form::select('season_id', $season_options, Input::old('season_id')) }}

{{ Form::label('team_id', 'Team:') }}
{{ Form::select('team_id', $team_options, Input::old('team_id')) }}

{{ Form::label('player_find', 'Federation player:') }}
{{ Form::text('player_find', '' ) }} {{ Form::text('player_id', Input::old('player_id'), array('id'=>'player_id')) }}

{{ Form::label('person_find', 'Euroclub member:') }}
{{ Form::text('person_find', '' ) }} {{ Form::text('person_id', Input::old('person_id'), array('id'=>'person_id')) }}

{{ Form::submit('save' , array( 'class' => 'button')) }} {{ HTML::link_to_route('players' , 'cancel', null, array( 'class'=>'button',)) }}

{{ Form::close() }} @endsection