{{ csrf_field() }}

{!! Form::label('name', 'Nome:') !!} {!! Form::text('name', null, array('class' => 'form-control title')) !!}
{!! Form::label('google_code', 'Codice Google:') !!} {!! Form::text('google_code', null, array('class' => 'form-control')) !!}

Oppure

{!! Form::label('image', 'Immagine:') !!}
{!! Form::file('image', null, array('class' => 'form-control')) !!}
@if (isset($adv) && $adv->image != '')
@endif
{!! Form::label('jingle', 'Jingle:') !!}
{!! Form::file('jingle', null, array('class' => 'form-control')) !!}
@if (isset($adv) && $adv->jingle != '') @endif
{!! Form::label('url', 'Url:') !!} {!! Form::text('url', null, array('class' => 'form-control')) !!}
{!! Form::label('online', 'Online:') !!}
{!! Form::checkbox('online', 'on', null) !!}
@section('extra_js') @stop