2016-05-19 15:01:28 +01:00
|
|
|
@extends('master')
|
|
|
|
|
2017-11-04 12:10:46 +00:00
|
|
|
@section('title')New Note « Admin CP « @stop
|
2016-05-19 15:01:28 +01:00
|
|
|
|
|
|
|
@section('content')
|
2019-10-27 16:15:14 +00:00
|
|
|
@if (count($errors) > 0)
|
|
|
|
<div class="errors">
|
|
|
|
<ul>
|
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
<li>{{ $error }}</li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
<form action="/admin/notes" method="post" accept-charset="utf-8" class="admin-form form">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
<div>
|
|
|
|
<label for="in-reply-to" accesskey="r">Reply-to: </label>
|
|
|
|
<input type="text"
|
|
|
|
name="in-reply-to"
|
|
|
|
id="in-reply-to"
|
|
|
|
placeholder="in-reply-to-1 in-reply-to-2 …"
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="content" accesskey="n">Note: </label>
|
|
|
|
<textarea name="content"
|
|
|
|
id="content"
|
|
|
|
placeholder="Note"
|
|
|
|
autofocus="autofocus"
|
|
|
|
>{{ old('content') }}</textarea>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<button type="submit"
|
|
|
|
name="submit"
|
|
|
|
>Submit</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2016-05-19 15:01:28 +01:00
|
|
|
@stop
|