@section('content') @if ( $errors->count() > 0 )

Attenzione

@endif

Dati dell'utente

I dati contrassegnati con * sono obbligatori.


{{ Form::open(array('url' => '/area_riservata/salvaDatiUtenteSenzaPremio/'.$utente->TPUID, 'class' => 'form-horizontal', 'files' => true, 'method' => 'POST', 'id' => 'sdusp_form')) }} {{ Form::hidden('tccid', $tccid) }} {{ Form::hidden('codp', $utente->TPUCodicePunto) }}
{{ Form::label('nome', 'Nome *', array('class' => 'col-lg-2 control-label'))}}
{{ Form::text('nome', $utente->TANNome, array('maxlength' => '64', 'required' => 'required','autocomplete' => 'off'))}}
{{ Form::label('cognome', 'Cognome *', array('class' => 'col-lg-2 control-label'))}}
{{ Form::text('cognome', $utente->TANCognome, array('maxlength' => '64', 'required' => 'required','autocomplete' => 'off'))}}
{{ Form::label('datanascita', 'Data di nascita', array('class' => 'col-lg-2 control-label'))}}
@if (strlen($utente->TANDataNascita) > 0) {{ Form::text('datanascita', date('d/m/Y', strtotime($utente->TANDataNascita)), array('maxlength' => '10', 'placeholder' => 'gg/mm/aaaa', 'autocomplete' => 'off')) }} @else {{ Form::text('datanascita', '', array('maxlength' => '10', 'placeholder' => 'gg/mm/aaaa', 'autocomplete' => 'off')) }} @endif
{{ Form::label('indirizzo', 'Indirizzo', array('class' => 'col-lg-2 control-label'))}}
{{ Form::text('indirizzo', $utente->TANIndirizzo, array('maxlength' => '64', 'autocomplete' => 'off'))}}
{{ Form::label('civico', 'N.', array('class' => 'control-label'))}}
{{ Form::text('civico', $utente->TANCivico, array('maxlength' => '10', 'autocomplete' => 'off'))}}
{{ Form::label('localita', 'Località di residenza', array('class' => 'col-lg-2 control-label'))}}
{{ Form::text('localita', $utente->TANLocalità, array('maxlength' => '64', 'autocomplete' => 'off'))}}
{{ Form::label('PR', 'Provincia di residenza', array('class' => 'col-lg-2 control-label'))}}
{{ Form::text('PR', $utente->TANPR, array('maxlength' => '2', 'placeholder' => 'Es: FE', 'autocomplete' => 'off'))}}
{{ Form::label('cap', 'CAP', array('class' => 'col-lg-1 control-label'))}}
{{ Form::text('cap', $utente->TANCAP, array('maxlength' => '5', 'placeholder' => 'Es: 44121', 'autocomplete' => 'off'))}}
{{ Form::label('email', 'E-mail', array('class' => 'col-lg-2 control-label'))}}
{{ Form::email('email', $utente->TANMail, array('maxlength' => '128', 'autocomplete' => 'off'))}}
{{ Form::label('cellulare', 'Cellulare', array('class' => 'col-lg-2 control-label'))}}
{{ Form::text('cellulare', $utente->TANCellulare, array('maxlength' => '16', 'autocomplete' => 'off'))}}
{{ Form::label('url_risorsa', 'Liberatoria', array('class' => 'col-lg-2 control-label'))}}
Selezionare il file della liberatoria in formato pdf da associare a questo utente
Indietro     {{ Form::submit('Salva', array('class' => 'btn btn-primary btn-lg')) }} {{ Form::close() }}


@stop