Tidy up admin cp note related views
This commit is contained in:
parent
7c11b08feb
commit
df1f2758cd
8 changed files with 7 additions and 7 deletions
16
resources/views/admin/notes/delete.blade.php
Normal file
16
resources/views/admin/notes/delete.blade.php
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue