@extends('admin.layout') @section('title', 'Ajouter une fabrication') @section('content')

@yield('title')

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{-- -------------------- INFORMATIONS DEVIS AUTO -------------------- --}}


{{-- -------------------- INFORMATIONS FABRICATION -------------------- --}}
{{-- Dates --}}

{{-- Découpes inox --}}
@foreach ($decoupes as $type => $items)
{{ $type }} @foreach ($items as $decoupe)
@endforeach
@endforeach
@endsection