Bracket ID {{ $info['bracket']->id }}
Division {{ $info['bracket']->division }}
Subdivision {{ $info['bracket']->subdivision }}
Activity {{ $info['bracket']->activity }}
Round ID {{ $info['round']->id }}
Round Type {{ $info['round']->round_type }}
Match ID {{ $info['match']->id }}
Match No. {{ $info['match']->number }}
Auto-Advance {{ ($info['match']->is_auto_advance) ? 'Yes' : 'No' }}

Last Updated
{{ date('m/d/Y g:i a', strtotime($info['match']->updated_at)) }}
{{ Form::open(array('url' => url('/brackets/update-match'))) }} {{ Form::hidden('match', $info['match']->id) }} {{ Form::hidden('bracket', $info['bracket']->id) }}
Top Participant

ID Seed Name Grade Team Holder Win?
@if (!is_null($info['top_participant'])) {{$info['top_participant']->id }} @else - - @endif @if (!is_null($info['top_participant'])) {{ Form::text('top_seed', (!is_null($info['top_participant'])) ? $info['top_participant']->seed : null, array('maxlength' => '2', 'style' => 'width: 20px; border-width: 1px;')) }} @else - - @endif {{ (!is_null($info['top_participant'])) ? $info['top_participant']->display_name : '- -' }} {{ (!is_null($info['top_participant'])) ? $info['top_participant']->grade : '- -' }} {{ (!is_null($info['top_participant'])) ? $info['top_participant']->team_name : '- -' }} {{ Form::text('top_holder', $info['match']->top_holder, array('style' => 'width: 75px; border-width: 1px;')) }} {{ Form::checkbox('top_win', true, $info['match']->is_top_win, array('style' => 'height: 16px; width: 16px; margin-top: 3px;')) }}
@if (Helpers::strEqual($info['bracket']->activity, 'WRE')) Results @elseif (Helpers::strEqual($info['bracket']->activity, array('BTN', 'GTN'))) Winner's Scores @endif
Indicators
Operation

{{ Form::text('results', $info['match']->results, array('style' => 'border-width: 1px; margin-left: 1em;')) }} {{ Form::label('is_bye', 'Bye', array('style' => 'margin-left: 50px;')) }} {{ Form::checkbox('is_bye', true, $info['match']->is_bye, array('style' => 'height: 16px; width: 16px; position: relative; top: 4px;')) }} {{ Form::label('is_irregular', (Helpers::strEqual($info['bracket']->activity, 'WRE')) ? 'Irregular' : 'Hidden', array('style' => 'margin-left: 50px;')) }} {{ Form::checkbox('is_irregular', true, $info['match']->is_irregular, array('style' => 'height: 16px; width: 16px; position: relative; top: 4px;')) }} {{ Form::label('advance', 'Advance on Save', array('style' => 'margin-left: 50px;')) }} {{ Form::checkbox('advance', true, false, array('style' => 'height: 16px; width: 16px; position: relative; top: 4px;')) }}
Bottom Participant
ID Seed Name Grade Team Holder Win?
@if (!is_null($info['bottom_participant'])) {{ $info['bottom_participant']->id }} @else - - @endif @if (!is_null($info['bottom_participant'])) {{ Form::text('bottom_seed', (!is_null($info['bottom_participant'])) ? $info['bottom_participant']->seed : null, array('maxlength' => '2', 'style' => 'width: 20px; border-width: 1px;')) }} @else - - @endif {{ (!is_null($info['bottom_participant'])) ? $info['bottom_participant']->display_name : '- -' }} {{ (!is_null($info['bottom_participant'])) ? $info['bottom_participant']->grade : '- -' }} {{ (!is_null($info['bottom_participant'])) ? $info['bottom_participant']->team_name : '- -' }} {{ Form::text('bottom_holder', $info['match']->bottom_holder, array('style' => 'width: 75px; border-width: 1px;')) }} {{ Form::checkbox('bottom_win', true, $info['match']->is_bottom_win, array('style' => 'height: 16px; width: 16px; margin-top: 3px;')) }}
{{ Form::close() }}
Winner Next Match @if(!is_null($info['winner_next_match'])) No. {{ $info['winner_next_match']->number }} ({{ $info['winner_next_match']->id }}) @else None @endif
Loser Next Match @if(!is_null($info['loser_next_match'])) No. {{ $info['loser_next_match']->number }} ({{ $info['loser_next_match']->id }}) @else None @endif