{{ csrf_field() }}

{!! Form::label('type', 'Tipologia:') !!} {!! Form::select('type', ['nation' => 'Nazionale', 'region' => 'Regionale'] , null, array('class' => 'form-control')) !!}
{!! Form::label('season_id', 'Stagione:') !!} {!! Form::select('season_id', [''=>''] + $seasons, null, ['class' => 'form-control']) !!}
{!! Form::label('category_id', 'Categoria:') !!}
{!! Form::label('group_id', 'Girone:') !!}
{!! Form::label('file', 'File da importare:') !!}
@if(isset($calendar)) Attenzione, se viene importato un file viene sovrascritto il calendario
@endif
{!! Form::file('file', null, array('class' => 'form-control')) !!}
@section('extra_js') @stop