1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 2dd6b2bfcSGreg Roach 3*814c6707SGreg Roach<form method="post" action="<?= e(route('link-media-to-record', ['tree' => $tree->name(), 'xref' => $media->xref()])) ?>" id="wt-modal-form"> 4dd6b2bfcSGreg Roach <?= csrf_field() ?> 5dd6b2bfcSGreg Roach 6dd6b2bfcSGreg Roach <?= view('modals/header', ['title' => I18N::translate('Link this media object to an individual')]) ?> 7dd6b2bfcSGreg Roach 8dd6b2bfcSGreg Roach <div class="modal-body"> 9dd6b2bfcSGreg Roach <div class="form-group"> 10dd6b2bfcSGreg Roach <label class="col-form-label" for="link"> 11dd6b2bfcSGreg Roach <?= I18N::translate('Individual') ?> 12dd6b2bfcSGreg Roach </label> 13b6c326d8SGreg Roach <?= view('components/select-individual', ['name' => 'link', 'tree' => $tree]) ?> 14dd6b2bfcSGreg Roach </div> 15dd6b2bfcSGreg Roach </div> 16dd6b2bfcSGreg Roach 17dd6b2bfcSGreg Roach <?= view('modals/footer-save-cancel') ?> 18dd6b2bfcSGreg Roach</form> 19