@extends('admin.layout.app') @section('title','Add Stock Adjustment') @push('headerscript') @endpush @section('content')

Add Stock Adjustment

{!! Form::open(['route'=>array('stock-adjustment.store'),'onsubmit'=>'BtnSubmit.disabled = true', 'method' => 'post']) !!}
{{$errors->first('voucher_no')}}
{{$errors->first('voucher_date')}}
{!! Form::select("branch_id", \App\Http\Helpers\Helper::getBranchData(), old("branch_id"), ['class'=>'form-control' ,'id' => 'branch_id','required'=>'required'] ) !!}
{!! Form::select("account_ledger_id", [''=>'Select Account']+$expenses, old("account_ledger_id",91), ['class'=>'form-control' ,'id' => 'account_ledger_id','required'=>'required'] ) !!}
{{$errors->first('description')}}
Part No.* Current Qty. Adjustable Qty.* New Qty. Stock Type* Cost Price*
{!! Form::select("stock_type[]", ['plus'=>'Plus', 'minus'=>'Minus'], old("stock_type"), ['class'=>'form-control', 'required','id'=>'stock_type10'] ) !!}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush