Install by running
composer require codedor/laravel-livewire-forms
You can publish all the blade field files by running
php artisan vendor:publish --tag="livewire-forms"
If you have not used Livewire in your project before, remember to add the following blade directives:
...
@livewireStyles
</head>
<body>
...
@livewireScripts
</body>
</html>