@extends('app.layout') @section('sub_content')
@if($veterinaire->id)
@method('PATCH') @else @endif @csrf
{{ __('Référence') }}
@if ($errors->has('reference')) {{ $errors->first('reference') }} @endif
{{ __('Véterinaire') }}
@if ($errors->has('veterinaire')) {{ $errors->first('veterinaire') }} @endif
{{ __('Adresse') }}
@if ($errors->has('adresse')) {{ $errors->first('adresse') }} @endif
{{ __('Mail') }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{ __('Telephone 1') }}
@if ($errors->has('tel_1')) {{ $errors->first('tel_1') }} @endif
{{ __('Telephone 2') }}
@if ($errors->has('tel_2')) {{ $errors->first('tel_2') }} @endif
{{ __('Veto 1') }}
@if ($errors->has('veto_1')) {{ $errors->first('veto_1') }} @endif
{{ __('Veto 2') }}
@if ($errors->has('veto_2')) {{ $errors->first('veto_2') }} @endif
{{ __('Tel veto 1') }}
@if ($errors->has('tel_veto_1')) {{ $errors->first('tel_veto_1') }} @endif
{{ __('Tel veto 2') }}
@if ($errors->has('tel_veto_2')) {{ $errors->first('tel_veto_2') }} @endif
{{ __('Ville') }}
@if ($errors->has('ville')) {{ $errors->first('ville') }} @endif
{{ __('Cancel') }}
@endsection