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

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

@endif

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

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

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

@endif

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

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

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

@endif

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

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

0 @endif

* Champs Obligatoire

@endsection