Tidy up admin cp note related views

This commit is contained in:
Jonny Barnes 2017-03-02 18:22:52 +00:00
parent 7c11b08feb
commit df1f2758cd
8 changed files with 7 additions and 7 deletions

View file

@ -0,0 +1,16 @@
@extends('master')
@section('title')
Delete Note « Admin CP
@stop
@section('content')
<form action="/admin/note/delete/{{ $id }}" method="post" accept-charset="utf-8">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<fieldset class="note-ui">
<legend>Delete Note</legend>
<p>Are you sure you want to delete the note?
<label for="kludge"></label><input type="submit" value="Submit">
</fieldset>
</form>
@stop