{{ Form::open(array('url' => url('brackets/matchups/' . $info['matchup']->id . '/assignments/' . $info['record']->id . '/edit'), 'style' => 'font-size: 10pt; position: relative; padding-top: 0.25em;', 'id' => 'edit_assignment_form')) }} {{ Form::hidden('matchup_id', $info['matchup']->id) }} {{ Form::hidden('bracket_id', $info['bracket']->id) }} {{ Form::hidden('record_id', $info['record']->id) }} {{ Form::hidden('redirect', '/activities/' . strtolower($info['bracket']->activity) . '/brackets?div=' . $info['bracket']->division) }} {{ Form::label('officials_association', 'Association', array('style' => 'font-weight: bold;')) }} {{ Form::select('officials_association', $info['association_options'], $info['record']->officials_association->id)}}

{{ Form::label('officials_fee_edit', 'Officials\'s Fee', array('style' => 'font-weight: bold;')) }}
{{ Form::label('is_half_fee', 'Half Fee', array('style' => 'font-weight: bold;')) }} {{ Form::checkbox('is_half_fee', true, $info['record']->is_half_fee, array('style' => 'vertical-align: middle;')) }}
{{-- (More information below) --}}

Position:  
Amount:  
Apply:  
Year:   


{{ Form::label('number_edit', 'Number of Officials', array('style' => 'font-weight: bold;')) }} {{ Form::select('number_edit', $info['number_options'], $info['record']->number, array('style' => '')) }}
Number of spots that
have been assigned to this association
Game Fee:
Assign Fee:
TOTAL:


{{ Form::label('is_allow_meals', 'Allow Meal Claims', array('style' => 'font-weight: bold;')) }} {{ Form::checkbox('is_allow_meals', true, $info['record']->is_allow_meals, array('style' => 'vertical-align: middle;')) }} Check to allow the Commissioner to input/edit meal claims: breakfast, lunch, and/or dinner.

{{ Form::label('breakfast', 'Breakfast', array('style' => 'font-weight: bold;')) }} {{ Form::text('breakfast', $info['record']->breakfast, array('data-format' => 'integer', 'style' => 'width: 25px;', 'maxlength' => '2')) }}
{{ Form::label('lunch', 'Lunch', array('style' => 'font-weight: bold;')) }} {{ Form::text('lunch', $info['record']->lunch, array('data-format' => 'integer', 'style' => 'width: 25px;', 'maxlength' => '2')) }}
{{ Form::label('dinner', 'Dinner', array('style' => 'font-weight: bold;')) }} {{ Form::text('dinner', $info['record']->dinner, array('data-format' => 'integer', 'style' => 'width: 25px;', 'maxlength' => '2')) }}
Meals Fee:


{{ Form::label('is_allow_miles', 'Allow Mileage', array('style' => 'font-weight: bold;')) }} {{ Form::checkbox('is_allow_miles', true, $info['record']->is_allow_miles, array('style' => 'vertical-align: middle;')) }} Check to enable mileage reimbursement, un-check to not reimburse any mileage.

{{ Form::label('miles', 'Round-Trip Miles', array('style' => 'font-weight: bold;')) }} {{ Form::text('miles', $info['record']->miles, array('style' => 'width: 50px;', 'maxlength' => '4')) }}
Mileage Fee:
{{ Form::label('other_fee', 'Other Fee', array('style' => 'font-weight: bold;')) }} ${{ Form::text('other_fee', $info['record']->other_fee, array('style' => 'width: 75px;')) }}


{{ Form::label('officials', 'Official(s)', array('style' => 'font-weight: bold;')) }} {{ Form::text('officials', $info['record']->officials, array('style' => 'width: 250px;')) }} Name(s) of the assigned official(s)

{{ Form::textarea('staff_notes', $info['record']->staff_notes, array('style' => 'height: 3em; width: 90%;')) }}

{{ Form::textarea('cmsh_notes', $info['record']->notes, array('style' => 'height: 3em; width: 90%;')) }}

Submitted: {{ (!is_null($info['record']->cmsh_verified_at)) ? date('D n/j/Y g:ia', strtotime($info['record']->cmsh_verified_at)) : 'NOT SUBMITTED' }}
Updated: {{ (!is_null($info['record']->updated_at)) ? date('D n/j/Y g:ia', strtotime($info['record']->updated_at)) : '- -' }}
Created: {{ (!is_null($info['record']->created_at)) ? date('D n/j/Y g:ia', strtotime($info['record']->created_at)) : '- -' }}
{{ Form::close() }}