# Form Widget

Display a list of the most recent form submissions.

## Configuring

Widgets can be added to the dashboard by modifying the `widgets` array in the `config/statamic/cp.php` file.

``` php
// config/statamic/cp.php

'widgets' => [
  [ // [tl! focus:start]
      'type' => 'form',
      'form' => 'contact',
      'fields' => ['name', 'email'],
      'limit' => 10,
  ], // [tl! focus:end]
],
