<?php $this->extend('block_searchable'); ?>

<?php $this->block('content'); ?>

<form id="form_oxVoucherSearch_<?= $this->id ?>"<?php if ($this->action): ?> action="<?= $this->action ?>"<?php endif; ?> method="get">
  <div class="formbody">
	  <div class="widget widget-text w100">
		  <label for="voucher_search_<?= $this->id ?>"><?= $this->searchLabel ?></label>
		  <input class="text" name="voucher_search" id="voucher_search_<?= $this->id ?>" type="text"<?php if (\Input::get('voucher_search')):?> value="<?= \Input::get('voucher_search') ?>"<?php endif; ?>/>
	  </div>

	  <div class="submit_container widget lblp button_block">
		  <button type="submit" class="submit"><?= $this->submitLabel ?></button>
	  </div>
  </div>
</form>

<?php $this->endblock(); ?>