@extends('layouts.app') @section('content')
Edit Pricing Tier

Update pricing tier for {{ $company->name }}

@if($errors->any()) @endif
@csrf @method('PUT')
@error('tier_group_id')
{{ $message }}
@enderror
@error('order')
{{ $message }}
@enderror
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('min_units')
{{ $message }}
@enderror
@error('max_units')
{{ $message }}
@enderror
For a Fixed Bracket Amount group this is the flat charge for the bracket. For a Minimum Charge + Excess Rate group this is the rate per cubic meter — except on the minimum bracket, where it is the flat minimum charge. @error('price_per_unit')
{{ $message }}
@enderror
is_minimum) ? 'checked' : '' }}> Used by "Minimum Charge + Excess Rate" groups: consumption within this bracket pays only the flat minimum; usage above it is charged per cubic meter. Only one bracket per group can be the minimum.
is_active) ? 'checked' : '' }}>
Cancel
@endsection