{!! Form::open(['url' => action('\Modules\Accounting\Http\Controllers\AccountTypeController@store'), 'method' => 'post', 'id' => 'create_account_type_form' ]) !!} {!! Form::hidden('account_type', null, ['id' => 'account_type']); !!}

{!! Form::label('name', __( 'user.name' ) . ':*') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => __( 'user.name' ) ]); !!}
{!! Form::label('parent_id', __( 'accounting::lang.account_type' ) . ':*') !!}
{!! Form::label('parent_id', __( 'accounting::lang.parent_type' ) . ':*') !!}
{!! Form::label('description', __( 'lang_v1.description' ) . ':') !!} {!! Form::textarea('description', null, ['class' => 'form-control', 'placeholder' => __( 'lang_v1.description' ), 'rows' => 3 ]); !!}
{!! Form::close() !!}