@if (count($information['activities']) > 0)
To add a new activity program for {{ $information['school']->name }}, select the appropriate information.
Locked fields cannot be modified and may change with your selections.
{{ Form::open() }}
{{ Form::label('activity', 'Activity', array('class' => 'add_ap_label')) }}
{{ Form::select('activity', $information['activities']) }}
{{ Form::label('season', 'Season', array('class' => 'float_left add_ap_label', 'style' => 'width: 130px;')) }}
{{ Form::text('season', null, array('readonly' => 'true', 'class' => 'float_left', 'style' => 'width: 25px;')) }}
{{ Form::label('school_year', 'School Year', array('class' => 'add_ap_label')) }}
{{ Form::text('school_year', Session::get('year'), array('style' => 'width: 60px;')) }}
{{ Form::label('name', 'Name', array('class' => 'float_left add_ap_label', 'style' => 'width: 130px;')) }}
{{ Form::text('name', $information['school']->short_name, array('readonly' => 'true', 'class' => 'float_left', 'style' => 'width: 250px;')) }}
{{ Form::label('division', 'Division', array('class' => 'add_ap_label')) }}
{{ Form::select('division', array()) }}
(Classified as a {{ $information['school']->classification }} school)
{{ Form::label('league', 'League', array('class' => 'add_ap_label')) }}
{{ Form::select('league', array(), null, array('style' => 'max-width: 325px;')) }}
(Regularly in {{ $information['school']->league->slug }} {{ $information['school']->league->name }})
{{ Form::hidden('host_school', $information['school']->id) }}
{{ Form::hidden('regular_league', $information['school']->league->slug) }}
{{ Form::close() }}
@else
There are no activities to add to this school.
@endif