@extends('layouts.app') @section('content')

Edit Seller Product

@include('adminlte-templates::common.errors')
{!! Form::model($sellerProduct, ['route' => ['sellerProducts.update', $sellerProduct->id], 'method' => 'patch', 'files' => true]) !!}
@include('seller_products.fields')
{!! Form::close() !!}
@endsection