{!! Form::open(['url' => action([\App\Http\Controllers\SellingPriceGroupController::class, 'update'], [$spg->id]), 'method' => 'put', 'id' => 'selling_price_group_form' ]) !!}

@lang( 'lang_v1.edit_selling_price_group' )

{!! Form::label('name', __( 'lang_v1.name' ) . ':*') !!} {!! Form::text('name', $spg->name, ['class' => 'form-control', 'required', 'placeholder' => __( 'lang_v1.name' ) ]); !!}
{!! Form::label('description', __( 'lang_v1.description' ) . ':') !!} {!! Form::textarea('description', $spg->description, ['class' => 'form-control','placeholder' => __( 'lang_v1.description' ), 'rows' => 3]); !!}
@php $loc_ids_arr = $loc_ids->toArray(); @endphp {!! Form::label('price_group_locations', __('business.business_locations') . ':') !!}
{!! Form::close() !!}