2016-05-19 15:01:28 +01:00
|
|
|
@extends('master')
|
|
|
|
|
2017-11-04 12:10:46 +00:00
|
|
|
@section('title')New Contact « Admin CP « @stop
|
2016-05-19 15:01:28 +01:00
|
|
|
|
|
|
|
@section('content')
|
2019-10-27 16:15:14 +00:00
|
|
|
<h1>New Contact</h1>
|
|
|
|
<form action="/admin/contacts/" method="post" accept-charset="utf-8" class="admin-form form">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
<div>
|
|
|
|
<label for="name">Real Name:</label>
|
|
|
|
<input type="text" name="name" id="name" placeholder="Real Name">
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="nick">Nick:</label>
|
|
|
|
<input type="text" name="nick" id="nick" placeholder="local_nick">
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="homepage">Homepage:</label>
|
|
|
|
<input type="text" name="homepage" id="homepage" placeholder="https://homepage.com">
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="twitter">Twitter Nick:</label>
|
|
|
|
<input type="text" name="twitter" id="twitter" placeholder="Twitter handle">
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<button type="submit" name="submit">Submit</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2017-03-03 13:22:21 +00:00
|
|
|
@stop
|