Files
aibuddytool/resources/views/front/partials/search.blade.php
2023-11-28 16:24:20 +08:00

9 lines
572 B
PHP

<form action="{{ route('front.search.post') }}" method="POST"
class="form-inline d-flex justify-content-center border rounded-pill p-2">
@csrf
<input class="form-control form-control-lg border-0 rounded-pill" type="search" placeholder="Search AI Tools"
name="query" value="{{ session()->get('query') }}" aria-label="Search">
<button class="btn btn-lg btn-primary bg-gradient text-white rounded-pill ms-2 text-nowrap ps-3 pe-2 px-lg-4 fw-bold"
type="submit">Search <span class="d-none d-md-inline"> with Buddy AI</span> </button>
</form>