@extends('admin/layouts/dashboard') @section('breadcrumbs', Breadcrumbs::render(Route::currentRouteName())) @section('content')
Добавить новую переменную
{{ Form::open( array('url' => route('admin.param.store'), 'method' => 'POST', 'enctype' => 'multipart/form-data') ) }} @include('admin.helper.form.input', [ 'name' => 'name', 'label' => 'Название' ]) @include('admin.helper.form.input', [ 'name' => 'slug', 'label' => 'Идентификатор' ])
@include('admin.helper.form.submit', [ 'label' => 'Добавить' ]) {{ Form::close() }}
@endsection @section('script') @include('admin.helper.unique', [ 'entity' => "\\\JustWeCMS\\\Modules\\\Param\\\Entities\\\Param" ]) @endsection