@extends('materiels.layouts') @section('content')
Modifier un Matériel
@csrf @method("PUT")
@error('localisation') {{ $localisation }} @enderror
@if ($errors->has('nom')) {{ $errors->first('nom') }} @endif
@if ($errors->has('marque')) {{ $errors->first('marque') }} @endif
@if ($errors->has('reference')) {{ $errors->first('reference') }} @endif
@if ($errors->has('mise_en_service')) {{ $errors->first('mise_en_service') }} @endif
@if ($errors->has('prochaine_certif')) {{ $errors->first('prochaine_certif') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('valeur')) {{ $errors->first('valeur') }} @endif
@if ($errors->has('date_valeur')) {{ $errors->first('date_valeur') }} @endif
@endsection