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

Create a new water pricing tier for {{ $company->name }}

@if($errors->any()) @endif
@csrf @if(auth()->user()->isSuperAdmin()) @endif
@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
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.
Cancel
@endsection