Enhanced Forms in Svelte
From the SvelteKit cheat sheet ยท Form Actions ยท verified Jul 2026
Enhanced Forms
Client-side progressive enhancement
javascript
<script>
import { enhance } from '$app/forms';
</script>
<form use:enhance>
<input name="title" />
<button>Submit</button>
</form>โก use:enhance for progressive enhancement
๐ฏ Optimistic UI updates without waiting
๐ Access to form data before submission
๐ Custom result handling and validation