@if ($index === 'N')
Use this utility to add a state qualifier to your form.
@elseif ($index === 'AI')
Use this form to edit additional information for {{ $record->first_name }} {{ $record->last_name }}.
@else
Use this utility to edit this state qualifier.
@endif
@if ($index === 'AI')
Please provide additional information for this state qualifier, required information is noted with a red asterisk,*. Required information from your district results, noted with a blue asterisk,*, cannot be edited.
@else
As the district director, you are required to provide essential information, noted with a red asterisk,*. If you know additional information about this qualifier, you can provide this additional information. Schools will be able to input other information for their qualifiers once the district results are submitted.
@endif
{{ Form::open(array('id' => 'add_edit_qualifier',
'style' => 'font-size: 10pt;')) }}
@if ($index === 'AI')
{{ Form::hidden('index', $info['index']) }}
{{ Form::hidden('registered', $record->registered) }}
{{ Form::hidden('selected', $record->selected) }}
@else
{{ Form::hidden('index', $index) }}
{{ Form::hidden('registered', $record->registered) }}
{{ Form::hidden('selected', $record->selected) }}
@endif
Qualifier Information
{{ Form::label('first_name', 'First Name', array('style' => '')) }}
@if ($index === 'AI')
{{ $record->first_name }}
{{ Form::hidden('first_name', $record->first_name) }}
*
@else
{{ Form::text('first_name', $record->first_name, array('style' => 'width: 115px;')) }}
*
@endif
{{ Form::label('last_name', 'Last Name', array('style' => '')) }}
@if ($index === 'AI')
{{ $record->last_name }}
{{ Form::hidden('last_name', $record->last_name) }}
*
@else
{{ Form::text('last_name', $record->last_name, array('style' => 'width: 115px;')) }}
*
@endif
{{ Form::label('grade', 'Grade', array('style' => '')) }}
@if ($index === 'AI')
{{ Form::select('grade', $options['grades'], $record->grade, array('style' => '')) }}
*
Student's grade in school during this school year.
@else
{{ Form::select('grade', $options['grades'], $record->grade, array('style' => '')) }}
Student's grade in school during this school year, if known.
@endif
{{ Form::label('school', 'School', array('style' => '')) }}
@if ($index === 'AI')
{{ $record->school }}
{{ Form::hidden('school', $record->school) }}
*
@else
{{ Form::select('school', $options['schools'], $record->school, array('style' => '')) }}
*
School the student represents. If the school is not listed, contact OSAA staff (503) 682-6722 x239. Do not assign this qualifier to a different school than what he/she represents.
@endif
{{ Form::label('category', 'Category', array('style' => '')) }}
@if ($index === 'AI')
{{ $record->category }}
{{ Form::hidden('category', $record->category) }}
*
@else
{{ Form::select('category', $options['categories'], $record->category, array('style' => '')) }}
*
@endif
{{ Form::label('placement', 'Placement', array('style' => '')) }}
@if ($index === 'AI')
{{ $record->placement }}
{{ Form::hidden('placement', $record->placement) }}
*
@else
{{ Form::select('placement', $options['placements'], $record->placement, array('style' => '')) }}
*
@endif
{{ Form::label('director_name', 'Director Name', array('style' => '')) }}
@if ($index === 'AI')
{{ Form::text('director_name', $record->director_name, array('style' => 'width: 200px;', 'data-options' => implode(',', $options['director_names']))) }}
*
@else
{{ Form::text('director_name', $record->director_name, array('style' => 'width: 200px;', 'data-options' => implode(',', $options['director_names']))) }}
You can optionally provide this information.
@endif
{{ Form::label('director_email', 'Director Email', array('style' => '')) }}
@if ($index === 'AI')
{{ Form::text('director_email', $record->director_email, array('style' => 'width: 250px;')) }}
*
@else
{{ Form::text('director_email', $record->director_email, array('style' => 'width: 250px;')) }}
@endif
{{ Form::label('director_phone', 'Director Phone', array('style' => '')) }}
{{ Form::text('director_phone', $record->director_phone, array('style' => 'width: 110px;')) }}
@if ($index === 'AI')
Accompanist information is highly recommended for scheduling purposes. Late accompanist additions may have conflicts and may not be honored.
{{ Form::label('accompanist_name', 'Accompanist Name', array('style' => '')) }}
{{ Form::text('accompanist_name', $record->accompanist_name, array('style' => 'width: 200px;')) }}
{{-- REMOVE THIS NAD ADD OPTION --}}
You can optionally provide this information.
{{ Form::label('accompanist_email', 'Accompanist Email', array('style' => '')) }}
{{ Form::text('accompanist_email', $record->accompanist_email, array('style' => 'width: 250px;')) }}
{{ Form::label('accompanist_phone', 'Accompanist Phone', array('style' => '')) }}
{{ Form::text('accompanist_phone', $record->accompanist_phone, array('style' => 'width: 110px;')) }}
Musical Selections
Selection 1
{{ Form::label('selection_1_title', 'Title', array('style' => '')) }}
{{ Form::text('selection_1_title', $record->selection_1_title, array('style' => 'width: 200px;')) }}
{{ Form::label('selection_1_composer', 'Composer', array('style' => '')) }}
{{ Form::text('selection_1_composer', $record->selection_1_composer, array('style' => 'width: 200px;')) }}
Selection 2
{{ Form::label('selection_2_title', 'Title', array('style' => '')) }}
{{ Form::text('selection_2_title', $record->selection_2_title, array('style' => 'width: 200px;')) }}
{{ Form::label('selection_2_composer', 'Composer', array('style' => '')) }}
{{ Form::text('selection_2_composer', $record->selection_2_composer, array('style' => 'width: 200px;')) }}
Notes
{{ Form::label('notes', 'Notes/Comments', array('style' => '')) }}
{{ Form::textarea('notes', $record->notes, array('style' => 'width: 70%; height: 3.5em;')) }}
@else
{{ Form::hidden('accompanist_name', $record->accompanist_name) }}
{{ Form::hidden('accompanist_email', $record->accompanist_email) }}
{{ Form::hidden('accompanist_phone', $record->accompanist_phone) }}
{{ Form::hidden('selection_1_title', $record->selection_1_title) }}
{{ Form::hidden('selection_1_composer', $record->selection_1_composer) }}
{{ Form::hidden('selection_2_title', $record->selection_2_title) }}
{{ Form::hidden('selection_2_composer', $record->selection_2_composer) }}
{{ Form::hidden('notes', $record->notes) }}
@endif
{{ Form::close() }}