Breadcrumb->render([ [ 'title' => 'Home', 'icon' => 'fa fa-home', 'url' => '/', ], [ 'title' => __('Documenti'), 'icon' => 'fa fa-book', ], [ 'title' => __('Lista Richieste di attingimento'), 'icon' => 'fa fa-list', 'url' => ['controller' => 'WaterDrawingPaperworks', 'action' => 'citizen_submission_index'], ], [ 'title' => __('Creazione Concessionario'), 'icon' => 'fa fa-info', ], ]); ?>

Form->create($applicant, ['role' => 'form', 'type' => 'file']); ?>
Form->control('name', ['label' => __('Nome'), 'type' => 'text', 'disabled' => true]); echo $this->Form->control('surname', ['label' => __('Cognome'), 'type' => 'text', 'disabled' => true]); echo $this->Form->control('tax_code', ['label' => __('Codice fiscale'), 'type' => 'text', 'disabled' => true]); echo $this->Form->control('company_name', ['label' => __('Ragione sociale'), 'type' => 'text']); echo $this->Form->control('vat_number', ['label' => __('Partita IVA'), 'type' => 'text']); echo $this->Form->control('address', ['label' => __('Indirizzo'), 'type' => 'text', 'required' => true]); echo $this->Form->control('district', ['label' => __('Comune'), 'type' => 'text', 'required' => true]); echo $this->Form->control('province', ['label' => __('Provincia'), 'type' => 'text', 'required' => true]); echo $this->Form->control('pec_address', ['label' => __('Indirizzo PEC'), 'type' => 'text']); echo $this->Form->control('email_address', ['label' => __('Indirizzo email'), 'type' => 'text']); ?>
Form->end(); ?>