@extends('layouts.master-vnext') @section('page-title') Edit product - {{ $product->name }} @endsection @section('content') @include('common.errors') {{ Form::model($product, [ 'action' => ['Inventory\ProductController@update', $product->id, 'division' => $division]]) }} {{ method_field('PUT') }} @include('inventory.product.form')
{{ Form::close() }} @endsection