11 lines
396 B
PHP
11 lines
396 B
PHP
|
|
<div id="subscribe-form">
|
||
|
|
<form action="{{ route('subscribe') }}" method="POST">
|
||
|
|
@csrf
|
||
|
|
<div class="email-input">
|
||
|
|
<label for="email">Email Address</label>
|
||
|
|
<input type="email" name="email" id="email" required placeholder="coolperson@example.com" />
|
||
|
|
</div>
|
||
|
|
<button id="subscribe-button" type="submit">Subscribe</button>
|
||
|
|
</form>
|
||
|
|
</div>
|