Instructions: Use this form to create a new staff contact for your school. Click Create Contact when finished. @if (!is_null($info['school_district']))

Note: Any new school district contact will be reflected for all schools in {{ $info['school_district']->name }}. @endif


{{ Form::open(array('url' => '/schools/staff/create', 'style' => 'font-size: 10pt; line-height: 10pt;')) }} {{ Form::hidden('school_id', $info['school']->id) }} @if (!is_null($info['school_district'])) {{ Form::hidden('school_district_id', $info['school_district']->id) }} @endif
{{ 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('alt_title', 'Alternate Title', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('alt_title', null, array('style' => 'width: 160px;')) }}
{{ 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'), 0, array('disabled' => 'disabled', 'style' => '')) }}


{{ Form::label('email', 'Email Address', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('email', null, array('style' => 'width: 250px;')) }}
{{ Form::label('work_phone', 'Work Phone Number', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('work_phone', null, array('style' => 'width: 135px;')) }}
{{ Form::label('mobile_phone', 'Mobile Phone Number', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('mobile_phone', null, array('style' => 'width: 135px;')) }}
@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() }}