jonnybarnes.uk/resources/views/admin/notes/create.blade.php

30 lines
555 B
PHP

@extends('master')
@section('title')
New Note « Admin CP
@stop
@section('content')
@if (count($errors) > 0)
<div class="errors">
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
@include('templates.new-note-form', [
'micropub' => false,
'action' => '/admin/note',
'id' => 'newnote-admin'
])
@stop
@section('scripts')
@include('templates.mapbox-links')
<script src="/assets/js/newnote.js"></script>
<link rel="stylesheet" href="/assets/frontend/alertify.css">
@stop