@extends('layouts.admin') @section('content')
NOUVELLE INTERVENTION
@csrf
@if($errors->has('client'))

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

@endif

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

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

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

@endif

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

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

@endif

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

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

@endif

@endsection