Heimdall/resources/views/items/create.blade.php

12 lines
276 B
PHP
Raw Normal View History

2018-02-01 06:57:12 +00:00
@extends('app')
@section('content')
{!! Form::open(array('route' => 'items.store', 'id' => 'itemform', 'files' => true, 'method'=>'POST')) !!}
2018-02-01 14:45:59 +00:00
@include('items.form')
{!! Form::close() !!}
2018-02-01 06:57:12 +00:00
2018-02-05 19:43:24 +00:00
@endsection
@section('scripts')
@include('items.scripts')
2018-02-01 06:57:12 +00:00
@endsection