xref: /webtrees/resources/views/modals/submission-fields.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1c2ed51d1SGreg Roach<?php
2c2ed51d1SGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
5c2ed51d1SGreg Roachuse Fisharebest\Webtrees\I18N;
67c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
77c2c99faSGreg Roach
87c2c99faSGreg Roach/**
97c2c99faSGreg Roach * @var Tree $tree
107c2c99faSGreg Roach */
11c2ed51d1SGreg Roach
12c2ed51d1SGreg Roach?>
13c2ed51d1SGreg Roach
149e3c2cf9SGreg Roach<div class="row mb-3">
15c2ed51d1SGreg Roach    <label class="col-form-label col-sm-2" for="submitter">
16c2ed51d1SGreg Roach        <?= I18N::translate('Submitter') ?>
17c2ed51d1SGreg Roach    </label>
18c2ed51d1SGreg Roach    <div class="col-sm-10">
19c2ed51d1SGreg Roach        <?= view('components/select-submitter', ['name' => 'submitter', 'tree' => $tree, 'required' => true]) ?>
20c2ed51d1SGreg Roach    </div>
21c2ed51d1SGreg Roach</div>
22