@extends('adminlte::page') @section('title', 'Create Budget') @section('content_header')

Submit Budget

@stop @section('content') @if($errors->any())
@endif
@csrf
{{-- Department, Month, Year --}}
{{-- Note --}}
{{-- Budget Items --}}
Budget Items
@php $oldItems = old('items', [['item'=>'','description'=>'','price'=>'']]); @endphp @foreach($oldItems as $i => $item) @endforeach
Item Description Price (TZS)
{{-- Total --}}
Total: TZS 0
{{-- Submit --}}
@stop @section('js') @stop