{{-- Add a Meet --}}
{{ Form::open(array('url' => url('/meets/create'), 'id' => 'meet_adder')) }} @if (Session::has('errors'))
@foreach ($errors->all() as $error){{ $error }} @endforeach
@endif {{ Form::hidden('team', $information['team']->id) }} {{ Form::hidden('activity_program', $information['activity_program']->id) }} {{ Form::hidden('activity', $information['activity_program']->activity) }} {{ Form::hidden('event_type', 'MEET') }} {{ Form::hidden('event_status', 'SCHD') }}
Meet Type
If only two schools are participating, select Dual.
Otherwise, if there are more than two schools, it's an Invitational.



Team Hosting the Meet
{{ Form::text('host_team', $information['home_team_name'], array('style' => 'width:215px;', 'class' => 'school_autocomplete')) }}

{{ Form::label('host_is_oos', 'Out-of-State Team') }} {{ Form::checkbox('host_is_oos', true, false, array('style' => 'position: relative; top: 2px; margin-right: 1em;')) }}