@extends('layout') @includes('includes/small-feature')

Withdraw stock — {{ $item->name }}

@if(count($stock) === 0)

There's no stock anywhere to withdraw from.

@endif @if(count($stock) > 0)
@if(session()->has('withdraw_errors'))
    @foreach(session('withdraw_errors') as $field => $errors) @foreach($errors as $error)
  1. {{ $error }}
  2. @endforeach @endforeach
@endif
@endif