@extends('layout.app')
@section('title', 'Create Stock Inward')
@push('header_script')
@endpush
@section('content')
{!! Form::open(['route' => 'stock-inward.store', 'method' => 'POST', 'id' => 'stockInwardForm']) !!}
{{-- Purchase Details Card --}}
{!! Form::select('purchase_voucher_id', ['' => '--Select--'] + $purchaseVouchers, null, ['class' => 'form-control select2', 'id' => 'purchase_voucher_id', 'style' => 'width: 100%;', 'required']) !!}
{{ $errors->first('purchase_voucher_id') }}
{{-- Item Entry Card --}}
| ITEM NAME |
SKU CODE |
BATCH NO. (optional) |
BRAND |
QTY |
UNIT |
PURCHASE RATE |
AMOUNT |
Total Quantity
0
Total Amount
₹0.00
{!! Form::close() !!}
@endsection
@push('footer_script')
@endpush