@extends('admin/layouts/dashboard') @section('breadcrumbs', Breadcrumbs::render(Route::currentRouteName())) @section('content')
Добавить страницу сайта
{{ Form::open( array('url' => route('admin.page.store'), 'method' => 'POST') ) }} @include('admin.helper.form.input', [ 'name' => 'name', 'label' => 'Название' ]) @include('admin.helper.form.input', [ 'name' => 'slug', 'label' => 'URL' ])
@include('admin.helper.form.input', [ 'name' => 'title', 'label' => 'Title' ]) @include('admin.helper.form.input', [ 'name' => 'keywords', 'label' => 'Keywords' ]) @include('admin.helper.form.input', [ 'name' => 'description', 'label' => 'Description' ]) @include('admin.helper.form.submit', [ 'label' => 'Добавить' ]) {{ Form::close() }}
@endsection @section('script') @include('admin.helper.unique', [ 'entity' => "\\\JustWeCMS\\\Entities\\\Page" ]) @endsection