{!! Form::open(['url' => action([\App\Http\Controllers\InvoiceSchemeController::class, 'store']), 'method' => 'post', 'id' => 'invoice_scheme_add_form' ]) !!}
{!! Form::label('name', __( 'invoice.name' ) . ':*') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => __( 'invoice.name' ) ]); !!}
{!! Form::label('invoice_number_type', __( 'invoice.number_type' ) . ':*') !!} @show_tooltip(__('invoice.number_type_tooltip'))
{!! Form::select('number_type', $number_types, null, ['class' => 'form-control select2', 'id' => 'invoice_number_type']); !!}
{!! Form::close() !!}