hypothetical/traditional-bootstrap/resources/views/pages/contact.blade.php

28 lines
1.1 KiB
PHP
Raw Normal View History

@extends('templates.public')
2016-01-03 19:08:53 -05:00
@section('content')
<div class="contact-page-component">
<div class="container">
<div class="row">
<div class="col col-md-8 offset-md-2">
<h1>Contact</h1>
</div>
2016-01-03 19:08:53 -05:00
</div>
<div class="row">
<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">
<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>
<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