@extends('layouts.app') @section('title', __('dashboard.Edit Laundry Operation')) @section('page_heading', __('dashboard.Edit Laundry Operation')) @section('content')
@if(session('success'))
{{ session('success') }}
@endif

{{ __('dashboard.Edit Laundry Operation') }}

@csrf @method('PATCH')
@error('laundry_id')
{{ $message }}
@enderror
@foreach($laundryOperation->products as $product)
{{ $product->name }}
{{ $product->name }}

SKU: {{ $product->sku }}

@endforeach
@error('status')
{{ $message }}
@enderror
{{ __('dashboard.Cancel') }}
@endsection @section('scripts') @endsection