@extends('layouts.app') @section('title', 'Cheque Printing') @section('content')

Cheque Printing

{!! Form::open(['url' => route('accounting-reports.cheque-printing.print'), 'method' => 'post', 'id' => 'cheque_printing_form', 'target' => '_blank']) !!}

Provide Cheque Details

{!! Form::label('account_id', 'Bank Account:*') !!} {!! Form::select('account_id', $accounts ?? ['' => __('messages.please_select')], null, ['class' => 'form-control select2', 'required', 'placeholder' => __('messages.please_select'), 'style' => 'width:100%', 'id' => 'account_id']) !!}
{!! Form::label('date', 'Date:*') !!}
{!! Form::text('date', @format_date('now'), ['class' => 'form-control date-picker', 'required', 'readonly', 'id' => 'date']) !!}
{!! Form::label('payee_name', 'Payee Name:*') !!} {!! Form::text('payee_name', null, ['class' => 'form-control', 'required', 'placeholder' => 'Payee Name', 'id' => 'payee_name']) !!}
{!! Form::label('amount', 'Amount:*') !!}
{!! Form::text('amount', null, ['class' => 'form-control input_number', 'required', 'id' => 'amount']) !!}
{!! Form::label('crossing', 'A/C Crossing:') !!} {!! Form::select('crossing', ['' => 'None', 'ac_payee' => 'Cross A/C Payee'], 'ac_payee', ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'crossing']) !!}
{!! Form::label('wording', 'Amount in Words Format:') !!} {!! Form::select('wording', ['international' => 'International (Millions, Billions)', 'indian' => 'Indian (Lakhs, Crores)'], 'international', ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'wording']) !!}
{!! Form::close() !!}
@endsection @section('javascript') @endsection