{!! Form::open(['url' => action([\App\Http\Controllers\TypesOfServiceController::class, 'store']), 'method' => 'post', 'id' => 'types_of_service_form' ]) !!}
{!! Form::label('name', __( 'tax_rate.name' ) . ':*') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => __( 'tax_rate.name' )]); !!}
{!! Form::label('description', __( 'lang_v1.description' ) . ':') !!}
{!! Form::textarea('description', null, ['class' => 'form-control', 'placeholder' => __( 'lang_v1.description' ), 'rows' => 3]); !!}
{!! Form::label('packing_charge_type', __( 'lang_v1.packing_charge_type' ) . ':') !!}
{!! Form::select('packing_charge_type', ['fixed' => __('lang_v1.fixed'), 'percent' => __('lang_v1.percentage')], 'fixed', ['class' => 'form-control']); !!}
{!! Form::label('packing_charge', __( 'lang_v1.packing_charge' ) . ':') !!}
{!! Form::text('packing_charge', null, ['class' => 'form-control input_number', 'placeholder' => __( 'lang_v1.packing_charge' )]); !!}