Transfer Stock

@if(($locations->count() ?? 0) < 2)
You need at least two locations to transfer stock.
Create locations in the database (e.g., 'Main' and 'Outlet'). If you need, I can add a simple Locations admin later.
@endif @if (isset($errors) && $errors->any())
Please fix the errors below
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('status'))
{{ session('status') }}
@endif
@csrf
Cancel