Instructions: Use this form to create a new activity program staff contact.

If you want to reuse an existing staff person in a new role, select his/her name from the Use Existing Staff drop-down list to auto-fill the form fields.

Note: Once you provide a name for this contact, it cannot be changed. You will be prompted to confirm your entry before saving. To request a correction to a saved name, contact {{ Helpers::obfuscateEmailLink('support@osaa.org') }}.


{{ Form::open(array('url' => '/schools/' . $info['school']->id . '/activity-staff/new', 'style' => 'font-size: 10pt; line-height: 10pt;')) }} {{ Form::hidden('school_id', $info['school']->id) }}
{{ Form::label('activity_program', 'Activity Program', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::select('activity_program', $info['activity_programs'], null, array('style' => '')) }}
{{ Form::label('school_staff_list', 'Use Existing Staff', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::select('school_staff_list', $info['school_staff_list'], null, array('style' => '')) }}

Clear & Reset


{{ Form::label('name_prefix', 'Prefix', array('style' => 'font-weight: bold; font-size: 8pt;')) }} (i.e. "Dr.")
{{ Form::text('name_prefix', null, array('style' => 'width: 90px;')) }}
{{ Form::label('first_name', 'First Name', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('first_name', null, array('style' => 'width: 120px;')) }}
{{ Form::label('middle_name', 'Middle Name', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('middle_name', null, array('style' => 'width: 90px;')) }}
{{ Form::label('last_name', 'Last Name', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('last_name', null, array('style' => 'width: 120px;')) }}
{{ Form::label('name_suffix', 'Suffix', array('style' => 'font-weight: bold; font-size: 8pt;')) }} (i.e. "III")
{{ Form::text('name_suffix', null, array('style' => 'width: 90px;')) }}


{{ Form::label('role', 'Role', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::select('role', $info['roles'], null, array('style' => '')) }}
{{ Form::label('level', 'Level', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::select('level', $info['levels'], 'V', array('style' => '')) }}
{{ Form::label('staff_type', 'Staff Type', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::select('staff_type', $info['staff_types'], null, array('style' => '')) }}
{{ Form::label('is_on_rosters', 'Shown on Rosters?', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::select('is_on_rosters', array(0 => 'No', 1 => 'Yes'), 1, array('style' => '')) }}


{{ Form::label('email', 'Email Address', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('email', null, array('style' => 'width: 250px;')) }}
{{ Form::label('is_email_public', 'Email address is public:', array('style' => 'font-size: 8pt;')) }} {{ Form::checkbox('is_email_public', 1, 0, array('style' => 'vertical-align: middle;')) }}
{{ Form::label('work_phone', 'Work Phone Number', array('style' => 'font-weight: bold;')) }}
{{ Form::text('work_phone', null, array('style' => 'width: 135px;')) }}
{{ Form::label('is_work_phone_public', 'Phone is public:', array('style' => 'font-size: 8pt; margin-top: 0.5em;')) }} {{ Form::checkbox('is_work_phone_public', 1, 0, array('style' => 'vertical-align: middle;')) }}
{{ Form::label('mobile_phone', 'Mobile Phone Number', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('mobile_phone', null, array('style' => 'width: 135px;')) }}
Mobile phone is never public
@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', null, array('style' => 'width: 650px; height: 3em;')) }}
@endif {{ Form::close() }}