Breadcrumb->render([ [ 'title' => 'Home', 'icon' => 'fa fa-home', 'url' => '/', ], [ 'title' => __('Documenti'), 'icon' => 'fa fa-book', ], [ 'title' => __('Lista Pratiche di attingimento'), 'icon' => 'fa fa-list', 'url' => ['controller' => 'WaterDrawingPaperworks', 'action' => 'index'], ], [ 'title' => __('Dettaglio Pratica di attingimento'), 'icon' => 'fa fa-list', 'url' => ['controller' => 'WaterDrawingPaperworks', 'action' => 'view', $waterDrawingMeter->water_drawing_intended_use->water_drawing_paperwork_id], ], [ 'title' => __('Modifica lo strumento di misura'), 'icon' => 'fa fa-pencil-alt', ], ]); ?>

Form->create($waterDrawingMeter, ['role' => 'form']); ?>
Form->control('water_drawing_tool_type_id', ['label' => __('Tipo'), 'type' => 'select', 'options' => $waterDrawingToolTypes, 'empty' => true]) ?>
Form->control('installation_date', ['label' => __('Data installazione'), 'type' => 'date', 'style' => 'margin-left: 5px;', 'max' => $today->format('Y-m-d')]) ?>
Form->control('manufacturer', ['label' => __('Marca'), 'type' => 'text']) ?>
Form->control('part_number', ['label' => __('Matricola'), 'type' => 'text']) ?>
Form->end(); ?>