{!! BootForm::text('Name', 'name')->placeholder('Name') !!}
{!! BootForm::select('Account Group', 'group_id')->options($groupList)->attribute('id', 'account_group'); !!}
{!! BootForm::text('GstNO', 'gstNo')->placeholder('GSTNo') !!}
{!! BootForm::text('Phone', 'phone')->placeholder('Phone') !!}
{!! BootForm::text('Email', 'email')->placeholder('Email') !!}
{!! BootForm::select('Bank or Cash Account ', 'type')->options(['1' => 'Yes', '0' => 'No'])->attribute('id', 'type')->formText('Note : Select if the ledger account is a bank or a cash account.'); !!}
{!! BootForm::select('Reconciliation', 'reconciliation')->options(['1' => 'Yes', '0' => 'No'])->attribute('id', 'Reconciliation')->formText('Note : If selected the ledger account can be reconciled from Reports Reconciliation.'); !!}
{!! BootForm::select('Bank or Cash Account ', 'balance_type')->options(['Cr' => 'Cr', 'Dr' => 'Dr'])->hideLabel()->attribute('id', 'type') !!}
{!! BootForm::text('Balance', 'balance')->placeholder('Balance')->hideLabel() !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel