1d70512abSGreg Roach<?php 2d70512abSGreg Roach 3*2d111ef4SGreg Roachuse Fisharebest\Webtrees\Contracts\ElementInterface; 4*2d111ef4SGreg Roachuse Fisharebest\Webtrees\Tree; 5d70512abSGreg Roach 6*2d111ef4SGreg Roach/** 7*2d111ef4SGreg Roach * @var array<string,ElementInterface> $elements 8*2d111ef4SGreg Roach * @var Tree $tree 9*2d111ef4SGreg Roach */ 10d70512abSGreg Roach?> 11dd6b2bfcSGreg Roach 12*2d111ef4SGreg Roach<?php foreach ($elements as $id => $element) : ?> 13dd6b2bfcSGreg Roach <div class="form-group"> 14*2d111ef4SGreg Roach <label class="col-form-label" for="<?= e($id) ?>"> 15*2d111ef4SGreg Roach <?= $element->label() ?> 16dd6b2bfcSGreg Roach </label> 17*2d111ef4SGreg Roach <?= $element->edit($id, $id, '', $tree) ?> 18dd6b2bfcSGreg Roach </div> 19*2d111ef4SGreg Roach<?php endforeach ?> 20dd6b2bfcSGreg Roach 21dd6b2bfcSGreg Roach<?= view('modals/restriction-fields') ?> 22