@if (Helpers::strEqual($info['staff_type'], 'activity_program_staff'))
{{ Helpers::getLevelName($info['ap_staff']->level) }} {{ $info['ap_staff']->getDisplayRole() }}
{{ $info['ap']->name }} {{ Helpers::getActivityName($info['ap']->activity) }}
@else
{{ $info['staff']->getDisplayRole(false) }}
{{ $info['school']->short_name }} {{ $info['staff']->alt_title }}
@endif
Instructions: Use this form to edit {{ (!Helpers::strIsEmpty($info['staff']->getDisplayName())) ? $info['staff']->getDisplayName() . "'s" : 'this' }} contact information.
Changing this contact name is not allowed in order to preserve accurate tracking of completed training courses. To merge this contact information with another individual's or to correct a spelling error for this person's name, contact {{ Helpers::obfuscateEmailLink('support@osaa.org') }}.
{{ Form::open(array('url' => '/schools/activity-staff/' . $info['staff']->id . '/edit', 'style' => 'font-size: 10pt; line-height: 10pt;')) }}
{{ Form::hidden('staff_id', $info['staff']->id) }}
{{ Form::hidden('staff_type_handler', $info['staff_type']) }}
@if (Helpers::strEqual($info['staff_type'], 'activity_program_staff'))
{{ Form::hidden('ap_staff_id', $info['ap_staff']->id) }}
@endif
{{ Form::hidden('school_id', $info['school']->id) }}
@if (Helpers::strEqual($info['staff_type'], 'other_staff'))
{{ Form::label('alt_title', 'Other Sport/Activity', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('alt_title', $info['staff']->alt_title, array('style' => 'width: 120px;')) }}
("Other" staff are not displayed on any roster and will not appear on school pages.)
@endif
{{ Form::label('name_prefix', 'Prefix', array('style' => 'font-weight: bold; font-size: 8pt;')) }} (i.e. "Dr.")
@if (!Auth::user()->isOsaaUser() and !Helpers::strIsEmpty($info['staff']->name_prefix))
{{ Form::text('name_prefix', $info['staff']->name_prefix, array('style' => 'width: 90px; color: #7d7b7d;', 'readonly' => 'readonly')) }}
@else
{{ Form::text('name_prefix', $info['staff']->name_prefix, array('style' => 'width: 90px;')) }}
@endif
{{ Form::label('first_name', 'First Name', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
@if (!Auth::user()->isOsaaUser() and !Helpers::strIsEmpty($info['staff']->first_name))
{{ Form::text('first_name', $info['staff']->first_name, array('style' => 'width: 120px; color: #7d7b7d;', 'readonly' => 'readonly')) }}
@else
{{ Form::text('first_name', $info['staff']->first_name, array('style' => 'width: 120px;')) }}
@endif
{{ Form::label('middle_name', 'Middle Name', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
@if (!Auth::user()->isOsaaUser() and !Helpers::strIsEmpty($info['staff']->middle_name))
{{ Form::text('middle_name', $info['staff']->middle_name, array('style' => 'width: 90px; color: #7d7b7d;', 'readonly' => 'readonly')) }}
@else
{{ Form::text('middle_name', $info['staff']->middle_name, array('style' => 'width: 90px;')) }}
@endif
{{ Form::label('last_name', 'Last Name', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
@if (!Auth::user()->isOsaaUser() and !Helpers::strIsEmpty($info['staff']->last_name))
{{ Form::text('last_name', $info['staff']->last_name, array('style' => 'width: 120px; color: #7d7b7d;', 'readonly' => 'readonly')) }}
@else
{{ Form::text('last_name', $info['staff']->last_name, array('style' => 'width: 120px;')) }}
@endif
{{ Form::label('name_suffix', 'Suffix', array('style' => 'font-weight: bold; font-size: 8pt;')) }} (i.e. "III")
@if (!Auth::user()->isOsaaUser() and !Helpers::strIsEmpty($info['staff']->name_suffix))
{{ Form::text('name_suffix', $info['staff']->name_suffix, array('style' => 'width: 90px; color: #7d7b7d;', 'readonly' => 'readonly')) }}
@else
{{ Form::text('name_suffix', $info['staff']->name_suffix, array('style' => 'width: 90px;')) }}
@endif
{{ Form::label('role', 'Role', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
@if (Helpers::strEqual($info['staff_type'], 'activity_program_staff'))
{{ Form::select('role', $info['roles'], $info['ap_staff']->role, array('style' => '')) }}
@else
{{ Form::select('role', $info['roles'], $info['staff']->role, array('style' => '')) }}
@endif
{{ Form::label('level', 'Level', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
@if (Helpers::strEqual($info['staff_type'], 'activity_program_staff'))
{{ Form::select('level', $info['levels'], $info['ap_staff']->level, array('style' => '')) }}
@else
{{ Form::select('level', $info['levels'], 'V', array('style' => '', 'disabled' => 'disabled')) }}
@endif
{{ Form::label('staff_type', 'Staff Type', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::select('staff_type', $info['staff_types'], $info['staff']->staff_type, array('style' => '')) }}
{{ Form::label('is_on_rosters', 'Shown on Rosters?', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
@if (Helpers::strEqual($info['staff_type'], 'activity_program_staff'))
{{ Form::select('is_on_rosters', array(0 => 'No', 1 => 'Yes'), $info['ap_staff']->is_on_rosters, array('style' => '')) }}
@else
{{ Form::select('is_on_rosters', array(0 => 'No', 1 => 'Yes'), 0, array('style' => '', 'disabled' => 'disabled')) }}
(No rosters for "Other")
@endif
@if (Helpers::strEqual($info['staff_type'], 'activity_program_staff') and Helpers::strEqual($info['ap']->activity, array('FBL')))
{{ Form::label('is_safety_coach', 'Player Safety Coach?', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::select('is_safety_coach', array(0 => 'No', 1 => 'Yes'), $info['ap_staff']->is_safety_coach, array('style' => '')) }}
@endif
{{ Form::label('email', 'Email Address', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('email', $info['staff']->email, array('style' => 'width: 250px;')) }}
{{ Form::label('is_email_public', 'Email address is public:', array('style' => 'font-size: 8pt;')) }}
@if (Helpers::strEqual($info['staff_type'], 'activity_program_staff'))
{{ Form::checkbox('is_email_public', 1, $info['ap_staff']->is_email_public, array('style' => 'vertical-align: middle;')) }}
@else
{{ Form::checkbox('is_email_public', 1, 0, array('style' => 'vertical-align: middle;', 'disabled' => 'disabled')) }}
@endif
{{ Form::label('work_phone', 'Work Phone Number', array('style' => 'font-weight: bold;')) }}
{{ Form::text('work_phone', Helpers::displayCombinedPhone($info['staff']->work_phone), array('style' => 'width: 135px;')) }}
{{ Form::label('is_work_phone_public', 'Phone is public:', array('style' => 'font-size: 8pt; margin-top: 0.5em;')) }}
@if (Helpers::strEqual($info['staff_type'], 'activity_program_staff'))
{{ Form::checkbox('is_work_phone_public', 1, $info['ap_staff']->is_work_phone_public, array('style' => 'vertical-align: middle;')) }}
@else
{{ Form::checkbox('is_work_phone_public', 1, 0, array('style' => 'vertical-align: middle;', 'disabled' => 'disabled')) }}
@endif
{{ Form::label('mobile_phone', 'Mobile Phone Number', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('mobile_phone', Helpers::displayCombinedPhone($info['staff']->mobile_phone), array('style' => 'width: 135px;')) }}
Mobile phone is never public
{{ Form::label('alt_email_list', 'Alternate Email Addresses', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
(Not public, used for extra NFHS Sync matching in addition to main email address)
{{ Form::text('alt_email_list', $info['staff']->alt_email_list, array('style' => 'width: 500px;')) }}
If this staff member has used other email address for his or her NFHS Learning Center account, you can type them into this text-box. NFHS Sync will use the main email and these alternates for syncing. Separate email addresses with a semi-colon.
For example: "fred.flintstone@bedrock.org; freddie_60@aol.com; f.flintstone@elsewhere.com"
School Staff ID #: {{ $info['staff']->id }}
@if (Helpers::strEqual($info['staff_type'], 'activity_program_staff'))
AP Staff ID #: {{ $info['ap_staff']->id }}
@else
OTHER STAFF TYPE
@endif
Created: {{ date('n/j/Y g:ia', strtotime($info['staff']->created_at)) }}
Updated: {{ date('n/j/Y g:ia', strtotime($info['staff']->updated_at)) }}
Modifier: {{ $info['updated_by'] }}
@if (Auth::check() and Auth::user()->isOsaaUser())
{{ Form::label('staff_notes', 'OSAA Staff Notes', array('style' => 'font-weight: bold; font-size: 8pt;')) }} (only visible to OSAA staff)
{{ Form::textarea('staff_notes', $info['staff']->staff_notes, array('style' => 'width: 650px; height: 3em;')) }}
@endif
{{ Form::close() }}