2024-04-03 22:35:43 -04:00
|
|
|
@extends('templates.public')
|
2016-01-03 19:08:53 -05:00
|
|
|
|
2016-01-26 23:20:08 -05:00
|
|
|
@section('content')
|
2017-11-21 23:12:31 -05:00
|
|
|
<div class="contact-page-component">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2018-01-09 22:00:45 -05:00
|
|
|
<div class="col col-md-8 offset-md-2">
|
2017-11-21 23:12:31 -05:00
|
|
|
<h1>Contact</h1>
|
|
|
|
</div>
|
2016-01-03 19:08:53 -05:00
|
|
|
</div>
|
|
|
|
|
2017-11-21 23:12:31 -05:00
|
|
|
<div class="row">
|
2018-01-09 22:00:45 -05:00
|
|
|
<div class="col col-md-8 offset-md-2">
|
2016-01-03 19:08:53 -05:00
|
|
|
<form action="#" method="POST" accept-charset="UTF-8">
|
2017-09-26 15:43:02 -04:00
|
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
|
|
|
<input type="text" name="name" placeholder="Name" />
|
|
|
|
<input type="text" name="email" placeholder="Email" />
|
|
|
|
<textarea name="message" placeholder="Message"></textarea>
|
|
|
|
<input class="submit" type="submit" name="submit" value="Submit" />
|
2016-01-03 19:08:53 -05:00
|
|
|
</form>
|
|
|
|
|
2017-09-26 15:43:02 -04:00
|
|
|
<div class="notification"><strong>Error:</strong> There were problems with the <span>0</span> fields highlighted above</div>
|
2016-01-03 19:08:53 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|