@extends('layouts.client') @section('content-header')

Modification de produit

@endsection @section('content') {!! Form::model($product, ['route' => ['clients.products.update', $product->id], 'class' => '', 'method' => 'PUT', 'files' => true]) !!}
@include('clients.products._form')
@include('clients.products._seo')

Attributs

@foreach($attributes as $attribute) @include('shared.attributes.'. $attribute->type .'.edit', ['attribute' => $attribute, 'db_value' => $product_attributes->get($attribute->id)]) @endforeach
{!! Form::close() !!} @endsection @section('scripts') @endsection