@extends('app.layout') @section('sub_content')
{{__('Clients')}}
home
{{__('Home')}}
{{__('clients')}}
@if($client->id)
{{__('Edit client')}}
{{ $client->libelle }}
@else
{{__('Add New client')}}
@endif
@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
@if($client->id) {{ __('Save') }} @else {{ __('Save') }} @endif
{{ __('Cancel') }}
@endsection