@extends('app.layout') @section('sub_content')
@if($client->id)
@method('PATCH') @else @endif @csrf
{{ __('Réference') }}*
@if ($errors->has('reference')) {{ $errors->first('reference') }} @endif
{{ __('Désignation') }}*
@if ($errors->has('designation')) {{ $errors->first('designation') }} @endif
{{ __('Télèphone') }}*
@if ($errors->has('tel')) {{ $errors->first('tel') }} @endif
{{ __('Email') }}*
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{ __('CIN') }}
@if ($errors->has('cin')) {{ $errors->first('cin') }} @endif
{{ __('Adresse') }}
@if ($errors->has('adresse')) {{ $errors->first('adresse') }} @endif
{{ __('Télèphone 2') }}
@if ($errors->has('tel_2')) {{ $errors->first('tel_2') }} @endif
{{ __('Cancel') }}
@endsection