# Contact Forms

## Installation

In the project's `composer.json` file, add the following settings:

```
"require": {
    ...
    "vitalhikescotland/contact": "master"
},
"repositories": [
    ...
    {
        "type": "vcs",
        "url": "git@bitbucket.org:vitalhikescotland/contact.git"
    }
]
```

In `config/app.php`, add `VitalHike\Contact\ServiceProvider::class` inside the 'Package Service Providers' section.

Next, you should publish the Contact Form configuration file using the vendor:publish Artisan command. The contact-form configuration file will be placed in your application's config directory:

```
php artisan vendor:publish --provider="VitalHike\Contact\ServiceProvider"
```
