{{ csrf_field() }}

{!! Form::label('name', 'Nome:') !!} {!! Form::text('name', null, array('class' => 'form-control title')) !!}
{!! Form::label('slug', 'Slug:') !!} {!! Form::text('slug', null, array('class' => 'form-control slug')) !!}
@if(false)
{!! Form::label('layout', 'Layout:') !!}
@for($x=1;$x<=6;$x++)
@endfor
{!! Form::label('type', 'Tipologia:') !!} {!! Form::select('type', ['section' => 'Nazionale', 'region' => 'Regionale'] , null, array('class' => 'form-control')) !!}
@endif
{!! Form::label('type', 'Tipologia:') !!} {!! Form::select('type', ['section' => 'Nazionale', 'region' => 'Regionale'] , null, array('class' => 'form-control')) !!}
{!! Form::label('show_social', 'Mostra box Facebook:') !!}
{!! Form::checkbox('show_social', 'on', null) !!}
{!! Form::label('show_social_twitter', 'Mostra box Twitter:') !!}
{!! Form::checkbox('show_social_twitter', 'on', null) !!}
@section('extra_js') @stop