What problem does it solve? Building React frontends on Inertia.js requires knowing the correct v3 APIs for pages, forms, navigation, and data loading; this Skill provides the exact patterns so you avoid broken SPA behavior and outdated v2 syntax. ## Core Features & Use Cases - Page Components & Navigation: Create React page components in resources/js/pages and wire client-side navigation with <Link>, router.visit, and prefetching. - Form Handling: Build forms with the <Form> component or useForm hook, including validation errors, processing states, and reset-on-success behavior. - Inertia v3 Features: Implement deferred props, optimistic updates, instant visits, layout props, useHttp requests, polling, WhenVisible, and InfiniteScroll. - Use Case: When adding a raffle ticket purchase form to a Laravel + Inertia React app, use this Skill to generate a <Form> component with error display, processing state, and optimistic UI updates. ## Quick Start Create an Inertia React page component with a form that submits to my Laravel route using the Form component with error handling.