What problem does it solve? Building React frontends inside Laravel applications often leads to broken SPA behavior, incorrect form handling, and missed Inertia v3 features. This Skill provides correct patterns for Inertia.js v3 React development so pages, forms, and navigation work with the Inertia protocol instead of against it. ## Core Features & Use Cases - Page Components & Navigation: Create React page components in resources/js/pages and use <Link> and router for client-side navigation with prefetching. - Form Handling: Build forms with the <Form> component or useForm hook, including error display, processing states, and automatic reset behavior. - Inertia v3 Features: Apply deferred props, optimistic updates, instant visits, layout props, polling, WhenVisible, InfiniteScroll, and the useHttp hook for plain JSON endpoints. - Use Case: When adding a user creation page to a Laravel + React app, use this Skill to scaffold the page component, wire up a <Form> with validation errors, and add prefetching links for fast navigation. ## Quick Start Use the inertia-react-development skill to create a React page component with a form that posts to a Laravel route and displays validation errors.