@extends('layout.app') @section('title', 'Create Journal Voucher') @push('header_script') @endpush @section('content')
{!! Form::open([ 'route' => ['journal-voucher.store'], 'onsubmit' => 'BtnSubmit.disabled = true', 'class' => 'row g-3 needs-validation', 'method' => 'post', 'autocomplete' => 'off', ]) !!}
{{ $errors->first('voucher_no') }}
{{ $errors->first('voucher_date') }}
{{ $errors->first('created_by') }}
{{ $errors->first('description') }}
S. No. Account Name* Remark Debit Credit Invoice No.
1 {!! Form::select('account_ledger_id[]', ['' => 'Select'] + $accountLedger, old('account_ledger_id'), [ 'class' => 'form-control select2', 'required', 'id' => 'account_ledger_id10', ]) !!}
Totals:
{!! Form::close() !!}
@endsection @push('footer_script') @endpush