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

34 lines
715 B
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
@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/new',
'id' => 'newnote-admin'
])
@stop
@section('scripts')
@include('templates.mapbox-links')
2016-05-19 15:01:28 +01:00
2016-07-18 10:30:49 +01:00
<script src="/assets/js/newnote.js"></script>
<script src="/assets/frontend/store2.min.js"></script>
<script src="/assets/frontend/alertify.js"></script>
2016-07-18 10:30:49 +01:00
<script src="/assets/js/form-save.js"></script>
2016-05-19 15:01:28 +01:00
<link rel="stylesheet" href="/assets/frontend/alertify.css">
2016-05-19 15:01:28 +01:00
@stop