What problem does it solve? Building React frontends for Inertia.js applications requires knowing the correct v3 APIs for pages, forms, navigation, and data loading, and mistakes like using plain anchor tags or mishandling deferred props break the single-page experience. ## Core Features & Use Cases - Page Components & Navigation: Create React page components in resources/js/Pages and implement client-side navigation with <Link>, router.visit, prefetching, and instant visits. - Form Handling: Build forms with the <Form> component or useForm hook, including validation errors, progress indicators, reset behavior, and optimistic updates. - Inertia v3 Data Features: Use useHttp for plain JSON requests, deferred props, usePoll for polling, WhenVisible for lazy loading, InfiniteScroll for paginated data, and setLayoutProps for shared layout data. - Use Case: When adding a user creation page to a Laravel + Inertia + React app, use this Skill to scaffold the page component, wire up a <Form> with error handling, and add prefetching links for fast navigation. ## Quick Start Ask the AI to create an Inertia React page component with a form that posts to a Laravel endpoint using the Form component with error handling.