@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',
'id' => 'newnote-admin'
])
@stop
@section('scripts')
@include('templates.mapbox-links')
@stop