# Forms

This provides a generic form controls and utilities for angular 2 forms

## Requirements

To setup the forms module you will need to:

Install forms to your project

```bash
npm install @vendasta/forms --save
```

Next, you will need to import and setup your navigation module (generally in `app.module.ts`)

```typescript
import { FormModule } from "@vendasta/forms";
…
@NgModule({
  …
  imports: [
    …, FormModule, …
  ]
})
```

