@php /** * @name Pagina login\Sezione registrazione * @version 1.0.0 */ @endphp @php $active = ''; if($layout == 'minimal'){ $active = ' active'; } @endphp

{{ $login_register_title = apply_filters('login_register_title', __t('Registrati')) }}

{{ $login_register_text = apply_filters('login_register_text', '') }}

{!! Form::open([ 'url' => Request::url(), 'method' => 'post', 'class' => 'form-horizontal frm-loader', 'id' => 'frm-login-register', 'novalidate' => true, ]) !!} @php foreach ($register_fields as $key => $field) { $columns = []; if ($key == 'postal_code') { $field = [$field, $register_fields['city'], $register_fields['province']]; $columns = [5, 4, 3]; } if ($key == 'email') { $field = [$field, $register_fields['phone']]; $columns = [7, 5]; } if ($key == 'city' || $key == 'province' || $key == 'phone') { continue; } get_form_fields($field, false, true, $columns); } @endphp
{!! Form::button(__t('Richiedi registrazione'), ['type' => 'submit', 'class' => 'btn btn-block btn-primary']) !!}
{!! Form::close() !!} @if($layout != 'minimal')
{!! Form::button(__t('Torna al login'), [ 'class' => 'btn btn-block btn-secondary btn-switch-page', 'data-trigger' => 'customers-login', ]) !!}
@endif