Files
opensem/resources/views/components/form/inputs/percent.blade.php

13 lines
311 B
PHP

@include('components.form.label')
<div class="input-group">
@include('components.form.input', ['type' => 'number', 'step' => '.01', 'label' => false])
<div class="input-group-append">
<button class="btn bg-light" type="button" aria-haspopup="false" aria-expanded="false">
%
</button>
</div>
</div>