{!! 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('payee_name', 'Payee Name:*') !!}
{!! Form::text('payee_name', null, ['class' => 'form-control', 'required', 'placeholder' => 'Payee Name', 'id' => 'payee_name']) !!}
{!! 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']) !!}