@extends('layouts.app') @section('title', 'New Transfer') @push('styles') @endpush @section('content') @if($errors->any())
Please fix the following:
@endif
@csrf

Transfer Route

@error('from_location_id')
{{ $message }}
@enderror
@error('to_location_id')
{{ $message }}
@enderror
@error('notes')
{{ $message }}
@enderror

Items

@php $oldItems = old('items', []); @endphp @if(!empty($oldItems)) @foreach($oldItems as $i => $oi)
@endforeach @endif
Cancel
@endsection @push('scripts') @endpush