@extends('layouts.app') @section('content')
Step 4: Meter Assignment & Tier Connection
Applicant Information

Name: {{ $application->full_name }}

Address: {{ $application->formatted_address }}

@csrf
@error('meter_number')
{{ $message }}
@enderror Must be unique. This will be the unique identifier for this customer's meter.
@error('tier_group_id')
{{ $message }}
@enderror

After clicking submit, this will:

  • Create a new customer account with the provided information
  • Assign the meter number to this customer
  • Connect the customer to the selected service tier
  • Make them ready for installation scheduling

Cancel
@endsection