xref: /webtrees/resources/views/modals/note-object-fields.phtml (revision dd6b2bfcc550270bb6d6778e11576148f71e4330)
1*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2*dd6b2bfcSGreg Roach
3*dd6b2bfcSGreg Roach<div class="form-group">
4*dd6b2bfcSGreg Roach    <label class="col-form-label" for="note">
5*dd6b2bfcSGreg Roach        <?= I18N::translate('Note') ?>
6*dd6b2bfcSGreg Roach    </label>
7*dd6b2bfcSGreg Roach    <textarea class="form-control" id="note" name="note" required rows="5"></textarea>
8*dd6b2bfcSGreg Roach</div>
9*dd6b2bfcSGreg Roach
10*dd6b2bfcSGreg Roach<?= view('modals/restriction-fields') ?>
11