@extends('layouts.app') @section('js_after') {{-- --}} {{-- --}} @endsection @section('title', 'Modifier produit') @section('content')

Modifier le produit

@method('PUT') @csrf

Veuillez remplir les informations pour Modifier le produit

@if ($errors->has('designation'))
{{ $errors->first('designation') }}
@endif
@if ($errors->has('reference'))
{{ $errors->first('reference') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
%
@if ($errors->has('discount'))
{{ $errors->first('discount') }}
@endif
@if ($errors->has('sample'))
{{ $errors->first('sample') }}
@endif
Annuler
@endsection