17 lines
420 B
PHP
17 lines
420 B
PHP
@extends('layout.index', [
|
|
'title' => __('shop.species.title'),
|
|
'subtitle' => __('shop.species.add'),
|
|
'breadcrumb' => [__('shop.species.title'), __('shop.species.add')]
|
|
])
|
|
|
|
@include('boilerplate::load.fileinput')
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Shop.Admin.species.store', 'id' => 'form', 'autocomplete' => 'off', 'files' => true]) }}
|
|
|
|
@include('Shop.Admin.species.form')
|
|
</form>
|
|
|
|
@endsection
|