@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 --}}
Purchase Details
{!! 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') }}
{{ $errors->first('party_account_ledger_id') }}
{{ $errors->first('invoice_no') }}
{{ $errors->first('invoice_date') }}
{{ $errors->first('remarks') }}
{{-- Item Entry Card --}}
Item Entry
ITEM NAME SKU CODE BATCH NO. (optional) BRAND QTY UNIT PURCHASE RATE AMOUNT
Total Quantity 0
Total Amount ₹0.00
Cancel
{!! Form::close() !!}
@endsection @push('footer_script') @endpush