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

12 lines
284 B
PHP
Raw Normal View History

2018-10-14 15:17:55 +00:00
@extends('layouts.app')
2018-02-01 06:57:12 +00:00
@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