2016-10-15 16:53:14 -04:00
|
|
|
@extends('layouts.public', [ 'title' => 'Home' ])
|
2016-01-26 23:20:08 -05:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div id="subscription-form">
|
|
|
|
<form action="#" method="POST" accept-charset="UTF-8">
|
|
|
|
<input type="hidden" name="_token" id="token" value="{{ csrf_token() }}" />
|
|
|
|
<input type="text" name="email" id="email" placeholder="Email" />
|
|
|
|
<input type="text" name="name" id="name" placeholder="Name" />
|
|
|
|
<input type="text" name="address" id="address" placeholder="Postal / ZIP" />
|
|
|
|
<div id="notification"></div>
|
|
|
|
<input id="submit" type="submit" value="Subscribe" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
@endsection
|