1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Functions\FunctionsEdit; ?> 2dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 3dd6b2bfcSGreg Roach 4dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2> 5dd6b2bfcSGreg Roach 6dd6b2bfcSGreg Roach<form class="wt-page-content" method="post"> 7dd6b2bfcSGreg Roach <?= csrf_field() ?> 8dd6b2bfcSGreg Roach 9dd6b2bfcSGreg Roach <div class="form-group row"> 10dd6b2bfcSGreg Roach <label class="col-sm-3 col-form-label" for="spouse"> 11dd6b2bfcSGreg Roach <?= $label ?> 12dd6b2bfcSGreg Roach </label> 13dd6b2bfcSGreg Roach <div class="col-sm-9"> 14*b6c326d8SGreg Roach <?= view('components/select-individual', ['name' => 'spid', 'id' => 'spouse', 'tree' => $tree]) ?> 15dd6b2bfcSGreg Roach </div> 16dd6b2bfcSGreg Roach </div> 17dd6b2bfcSGreg Roach 18dd6b2bfcSGreg Roach <?= FunctionsEdit::addSimpleTag($tree, '0 MARR Y') ?> 19dd6b2bfcSGreg Roach <?= FunctionsEdit::addSimpleTag($tree, '0 DATE', 'MARR') ?> 20dd6b2bfcSGreg Roach <?= FunctionsEdit::addSimpleTag($tree, '0 PLAC', 'MARR') ?> 21dd6b2bfcSGreg Roach 22dd6b2bfcSGreg Roach <div class="row form-group"> 23dd6b2bfcSGreg Roach <div class="col-sm-9 offset-sm-3"> 24dd6b2bfcSGreg Roach <button class="btn btn-primary" type="submit"> 25d993d560SGreg Roach <?= view('icons/save') ?> 26dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ 27dd6b2bfcSGreg Roach I18N::translate('save') ?> 28dd6b2bfcSGreg Roach </button> 29dd6b2bfcSGreg Roach <a class="btn btn-secondary" href="<?= e($individual->url()) ?>"> 30d993d560SGreg Roach <?= view('icons/cancel') ?> 31dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ 32dd6b2bfcSGreg Roach I18N::translate('cancel') ?> 33dd6b2bfcSGreg Roach </a> 34dd6b2bfcSGreg Roach </div> 35dd6b2bfcSGreg Roach </div> 36dd6b2bfcSGreg Roach</form> 37