9 lines
518 B
PHP
9 lines
518 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 px-4 fw-bold"
|
|
type="submit">Search with Buddy AI ✨</button>
|
|
</form>
|