(this might not be entirely necessary unless we're changing everything adminlte publishes) Signed-off-by: miguel456 <me@nogueira.codes>
26 lines
774 B
PHP
26 lines
774 B
PHP
<li>
|
|
|
|
<form class="form-inline my-2" action="{{ $item['href'] }}" method="{{ $item['method'] }}">
|
|
{{ csrf_field() }}
|
|
|
|
<div class="input-group">
|
|
|
|
{{-- Search input --}}
|
|
<input class="form-control form-control-sidebar" type="search"
|
|
@isset($item['id']) id="{{ $item['id'] }}" @endisset
|
|
name="{{ $item['input_name'] }}"
|
|
placeholder="{{ $item['text'] }}"
|
|
aria-label="{{ $item['text'] }}">
|
|
|
|
{{-- Search button --}}
|
|
<div class="input-group-append">
|
|
<button class="btn btn-sidebar" type="submit">
|
|
<i class="fas fa-fw fa-search"></i>
|
|
</button>
|
|
</div>
|
|
|
|
</div>
|
|
</form>
|
|
|
|
</li>
|