Rendering filament form input components manually

I need to render some form components manually. Can this but done outside of the form?

 <x-forms::select
     wire:model.live="custom"
    statePath="custom"
    id="custom"
 >
    <option></option>
 </x-forms::select>


<x-forms::text-input wire:model.live="custom" statePath="custom" id="custom" />


Throws errors:
Undefined variable $getStatePath
Undefined variable $getDatalistOptions

All I need is the basic input with styling so that it appears the same as other form elements
Was this page helpful?