@extends('layouts.admin') @section('content')
NOUVEAU PRODUIT
@csrf
@if($errors->has('libelle'))

{{ $errors->first('libelle') }}

@endif

{{ trans('cruds.client.fields.first_name_helper') }}

@if($errors->has('categorie_id'))

{{ $errors->first('categorie_id') }}

@endif

{{ trans('cruds.client.fields.first_name_helper') }}

@if($errors->has('prix'))

{{ $errors->first('prix') }}

@endif

@if($errors->has('quantite'))

{{ $errors->first('quantite') }}

@endif

@if($errors->has('description'))

{{ $errors->first('description') }}

@endif

@endsection