@extends('layouts.master') @section('page-title') Edit sale - {{ $sale->product->name }} @endsection @section('content') @include('common.errors') {{ Form::model($sale, [ 'action' => ['Guest\SaleController@update', $sale->id]]) }} {{ method_field('PUT') }} @include('guest.sale.form')