1ce42304aSGreg Roach<?php 2ce42304aSGreg Roach 3ce42304aSGreg Roachdeclare(strict_types=1); 4ce42304aSGreg Roach 5ce42304aSGreg Roachuse Fisharebest\Webtrees\I18N; 6ce42304aSGreg Roach 7ce42304aSGreg Roach/** 8ce42304aSGreg Roach * @var array<string,string> $options 9ce42304aSGreg Roach * @var string $selected 10ce42304aSGreg Roach */ 11ce42304aSGreg Roach 12ce42304aSGreg Roach?> 13ce42304aSGreg Roach 14*9e3c2cf9SGreg Roach<div class="row mb-3"> 15ce42304aSGreg Roach <label class="col-sm-3 col-form-label" for="surname"> 16ce42304aSGreg Roach <?= I18N::translate('Surname option') ?> 17ce42304aSGreg Roach </label> 18ce42304aSGreg Roach 19ce42304aSGreg Roach <div class="col-sm-9"> 20ce42304aSGreg Roach <?= view('components/select', ['name' => 'surname', 'options' => $options, 'selected' => $selected]) ?> 21ce42304aSGreg Roach </div> 22ce42304aSGreg Roach</div> 23