Instructions: Use this form to make small changes to {{ $info['staff']->display_name }}'s contact information. These changes could include name spelling corrections, e-mail address changes, or phone number updates. Click Save Changes when finished.
Alternatively, click Replace this Person to remove this individual in order to replace him/her with a new staff contact. This will retire {{ $info['staff']->display_name }}'s staff contact which will allow you to input a new person's information later.
Note: Any changes to this school district contact will be reflected for all schools in {{ $info['district']->name }}.
{{ Form::open(array('url' => '/school-district/staff/edit', 'style' => 'font-size: 10pt; line-height: 10pt;')) }}
{{ Form::hidden('id', $info['staff']->id) }}
{{ Form::label('name_prefix', 'Prefix', array('style' => 'font-weight: bold; font-size: 8pt;')) }} (i.e. "Dr.")
{{ Form::text('name_prefix', $info['staff']->name_prefix, array('style' => 'width: 90px;')) }}
{{ Form::label('first_name', 'First Name', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('first_name', $info['staff']->first_name, array('style' => 'width: 120px;')) }}
{{ Form::label('middle_name', 'Middle Name', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('middle_name', $info['staff']->middle_name, array('style' => 'width: 90px;')) }}
{{ Form::label('last_name', 'Last Name', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('last_name', $info['staff']->last_name, array('style' => 'width: 120px;')) }}
{{ Form::label('name_suffix', 'Suffix', array('style' => 'font-weight: bold; font-size: 8pt;')) }} (i.e. "III")
{{ Form::text('name_suffix', $info['staff']->name_suffix, array('style' => 'width: 90px;')) }}
{{ Form::label('role', 'Role', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::select('role', $info['roles'], $info['staff']->role, array('style' => '')) }}
{{ Form::label('alt_title', 'Alternate Title', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('alt_title', $info['staff']->alt_title, 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'], $info['staff']->staff_type, array('style' => '')) }}
{{ Form::label('is_on_rosters', 'Shown on Rosters?', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
@if (Auth::check() and Auth::user()->isOsaaUser())
{{ Form::select('is_on_rosters', array(0 => 'No', 1 => 'Yes'), $info['staff']->is_on_rosters, array('style' => '')) }}
@else
{{ Form::select('is_on_rosters', array(0 => 'No', 1 => 'Yes'), $info['staff']->is_on_rosters, array('disabled' => 'disabled', '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('work_phone', 'Work Phone Number', array('style' => 'font-weight: bold; font-size: 8pt;')) }}
{{ Form::text('work_phone', Helpers::displayCombinedPhone($info['staff']->work_phone), array('style' => 'width: 135px;')) }}
{{ 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;')) }}
@if (Auth::check() and Auth::user()->isOsaaUser())
ID #: {{ $info['staff']->id }}
Table: school_district_staff
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'] }}
{{ 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() }}