{{ csrf_field() }}

{!! Form::label('title', 'Titolo:') !!} {{isset($page) ? 90 - strlen($page->title) : 90}} caratteri rimanenti {!! Form::text('title', null, array('class' => 'form-control title', 'maxlength' => 90)) !!}
{!! Form::label('text_short', 'Testo breve:') !!} {!! Form::text('text_short', null, array('class' => 'form-control')) !!}
{!! Form::label('web', 'Sito web:') !!} {!! Form::text('web', null, array('class' => 'form-control')) !!}
{!! Form::label('email', 'Indirizzo email:') !!} {!! Form::text('email', null, array('class' => 'form-control')) !!}
{!! Form::label('facebook', 'Facebook:') !!} {!! Form::text('facebook', null, array('class' => 'form-control')) !!}
{!! Form::label('instagram', 'Instagram:') !!} {!! Form::text('instagram', null, array('class' => 'form-control')) !!}
{!! Form::label('twitter', 'Twitter:') !!} {!! Form::text('twitter', null, array('class' => 'form-control')) !!}
{!! Form::label('youtube', 'Youtube:') !!} {!! Form::text('youtube', null, array('class' => 'form-control')) !!}
{!! Form::label('slug', 'Slug:') !!} {!! Form::text('slug', null, array('class' => 'form-control slug')) !!}
{!! Form::label('image', 'Immagine:') !!}
{!! Form::file('image', null, array('class' => 'form-control')) !!}
@if (isset($page) && $page->image != '')
@endif
{!! Form::label('online', 'Online:') !!}
{!! Form::checkbox('online', 'on', null) !!}
@section('extra_js') @stop