@extends('master')
@section('title')
New Note « Admin CP
@stop
@section('content')
@if (count($errors) > 0)
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@include('templates.new-note-form', [
'micropub' => false,
'action' => '/admin/note/new',
'id' => 'newnote-admin'
])
@stop
@section('scripts')
@stop