@extends('app.layout') @section('sub_content')
@if($article->id)
@method('PATCH') @else @endif @csrf
{{ __('Référence') }}*
@if ($errors->has('reference')) {{ $errors->first('reference') }} @endif
{{ __('Libellé') }}*
@if ($errors->has('libelle')) {{ $errors->first('libelle') }} @endif
{{ __('Type') }}*
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
{{ __('Prix de vente') }}*
@if ($errors->has('prix_de_vente')) {{ $errors->first('prix_de_vente') }} @endif
{{ __('Code barre') }}
@if ($errors->has('code_barre')) {{ $errors->first('code_barre') }} @endif
{{ __('Prix Achat') }}
@if ($errors->has('prix_achat')) {{ $errors->first('prix_achat') }} @endif
{{ __('Marque') }}
@if ($errors->has('marque_id')) {{ $errors->first('marque_id') }} @endif
{{ __('Cancel') }}
@endsection @section('script') @endsection