@extends('layouts.app') @section('content')
Modifier le Client
@csrf @method('PUT')
@if ($errors->has('code_client')) {{ $errors->first('code_client') }} @endif
@if ($errors->has('raison_sociale')) {{ $errors->first('raison_sociale') }} @endif
@if ($errors->has('nom')) {{ $errors->first('nom') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('telephone')) {{ $errors->first('telephone') }} @endif
@if ($errors->has('adresse')) {{ $errors->first('adresse') }} @endif
@if ($errors->has('cp')) {{ $errors->first('cp') }} @endif
@if ($errors->has('ville')) {{ $errors->first('ville') }} @endif
@if ($errors->has('siret')) {{ $errors->first('siret') }} @endif
@if ($errors->has('contact')) {{ $errors->first('contact') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@endsection