@if (Helpers::strEqual($index, 'new')) Use this utility to create a new appeal record. Click "Add" to save this appeal to the form. @else Use this utility to edit this existing appeal record. Click "Save" to save changes to the form. @endif
{{ Form::open(array('url' => url('/forms/eligibility/' . $object->waiver->id . '/appeals'), 'method' => 'POST', 'style' => 'font-size: 10pt;')) }} {{ Form::hidden('redirect', url('/forms/eligibility/' . $object->waiver->id . '/edit')) }} {{ Form::hidden('waiver_id', $object->waiver->id) }} @if (is_numeric($index)) {{ Form::hidden('index', $appeal->index) }} @endif {{-- Add/Edit an Appeal --}} {{ Form::label('type', 'Appeal Type', array('style' => 'width: 125px;')) }} {{ Form::select('type', $options['appeal_types'], $appeal->type, array('style' => '')) }} Who will hear the appeal?

{{ Form::label('requested_at', 'Requested At', array('style' => 'width: 125px;'))}} {{ Form::text('requested_at', (!Helpers::strIsEmpty($appeal->requested_at)) ? date('m/d/y', strtotime($appeal->requested_at)) : null, array('style' => 'width: 100px;', 'data-date-picker' => true)) }} When was the appeal requested?

{{ Form::label('scheduled_at_date', 'Scheduled At', array('style' => 'width: 125px;'))}} {{ Form::text('scheduled_at_date', (!Helpers::strIsEmpty($appeal->scheduled_at)) ? date('m/d/y', strtotime($appeal->scheduled_at)) : null, array('style' => 'width: 100px;', 'data-date-picker' => true)) }} On what date is the appeal scheduled to occur?
{{ Form::text('scheduled_at_time', (!Helpers::strIsEmpty($appeal->scheduled_at)) ? date('g:i a', strtotime($appeal->scheduled_at)) : null, array('style' => 'width: 100px; margin-left: 125px; margin-top: 0.5em;')) }} At what time is the appeal scheduled to occur?

{{ Form::label('attending', 'Attending', array('style' => 'width: 125px;')) }} {{ Form::select('attending', $options['attending_options'], $appeal->attending, array('style' => '')) }} Is the party representing the student attending the appeal?

{{ Form::label('notes', 'Notes', array('style' => 'width: 125px;'))}} {{ Form::textarea('notes', $appeal->notes, array('style' => 'width: 500px; height: 5em;')) }}

This is a record of a requested appeal to a decision already made regarding this student's eligibility waiver. @if (is_null($appeal->index)) When you add this appeal, the waiver form's status will change from DONE to APPL. Add a new decision once the appeal is over. @endif {{ Form::close() }}