@extends('template.homepage') @section('content') @if ( $errors->count() > 0 )

Attenzione

@endif @if (!empty($error))

Attenzione

{{ $error }}

@elseif (!empty($success))

{{ $success }}

@endif
Per iscriverti alla newsletter e all'SMS news compila il modulo sottostante
{{ Form::open(array('url' => URL::to('/check', [], true), 'method' => 'post', 'role' => 'form'))}} {{ Form::hidden('id', $hash)}} @if(Cookie::get('laravel_session') == null) @endif
{{ Form::label('nome', 'Nome:', array('class' => 'control-label')) }} {{ Form::text('nome', '', array('class' => 'form-control', 'max-length' => '30', 'autocomplete' => 'off', 'placeholder' => 'Il tuo nome'))}} @if ($errors->has('nome'))

{{ $errors->first('nome') }}

@endif
 
{{ Form::label('cognome', 'Cognome:', array('class' => 'control-label')) }} {{ Form::text('cognome', '', array('class' => 'form-control', 'max-length' => '30', 'autocomplete' => 'off', 'placeholder' => 'Il tuo cognome'))}} @if ($errors->has('cognome'))

{{ $errors->first('cognome') }}

@endif
 
{{ Form::label('sesso', 'Sesso:', array('class' => 'control-label'))}}
 
{{ Form::label('citta', 'Città:', array('class' => 'control-label'))}} {{ Form::text('citta', '', array('class' => 'form-control', 'max-length' => '50', 'autocomplete' => 'off', 'placeholder' => 'Il tuo comune'))}}
 
{{ Form::label('email', 'E-mail:', array('class' => 'control-label'))}} {{ Form::text('email', '', array('class' => 'form-control', 'max-length' => '50', 'autocomplete' => 'off', 'placeholder' => 'La tua e-mail'))}} @if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
 
{{ Form::label('sms', 'Cellulare:', array('class' => 'control-label'))}} {{ Form::text('sms', '', array('class' => 'form-control', 'max-length' => '16', 'autocomplete' => 'off', 'placeholder' => 'Il tuo numero di cellulare'))}} {{ Form::textarea('privacysms', $privacySMS, array('readonly', 'class'=> "form-control privacy", 'rows' => '5', 'style' => 'width: 100%;') ) }} @if ($errors->has('sms'))

{{ $errors->first('sms') }}

@endif {{ Form::checkbox('acconsentoSMS', '1', false) }} Acconsento
 
{{ Form::textarea('privacy', $privacy, array('id' => 'privacy', 'readonly', 'class'=> "form-control privacy", 'rows' => '5') ) }}
 
{{ Form::checkbox('privacyChk', '1', false)}} Ho preso atto dell'informativa @if ($errors->has('privacyChk'))

{{ $errors->first('privacyChk') }}

@endif
 
{{ Form::captcha() }}
@if ($errors->has('captcha'))

{{ $errors->first('captcha') }}

@endif
 
{{ Form::submit('Iscrivimi', array('class' => 'btn btn-sm btn-primary'))}}
 
Dato indispensabile
Almeno un dato indispensabile
{{ Form::close() }}

Clicca qui per disiscriverti @stop