@extends('layouts.app') @section('link') @endsection @section('content')

{{__('texte.expeditions_arr.edit.expedition_edit')}}

{{ method_field('PATCH') }} {{ csrf_field() }}
@if ($errors->has('date')) {{ $errors->first('date') }} @endif
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('storage')) {{ $errors->first('storage') }} @endif
@if ($errors->has('note')) {{ $errors->first('note') }} @endif
@if ($errors->has('product')) {{ $errors->first('product') }} @endif
@if(config('settings.reserve_quantities')) @endif @foreach($expedition_rows as $index=>$row) @endforeach
{{__('texte.expeditions_arr.edit.title')}} {{__('texte.expeditions_arr.edit.quantity')}}{{__('texte.expeditions_arr.edit.available_quantity')}}{{__('texte.expeditions_arr.edit.remove')}}
{{$row->product_name}} {{$row->available_quantity + $row->quantity}}
@if ($errors) {{ $errors->first() }} @endif
@endsection