@extends('layouts.guest-horizontal') @section('content')
New Water Service Application @if($company) {{ $company->name }} @endif
@if($company) Submit your application to {{ $company->name }} @else Water Service Application Form @endif
@if ($errors->any())
Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Personal Information
@error('first_name')
{{ $message }}
@enderror
@error('last_name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
Address Information
@error('province')
{{ $message }}
@enderror
@error('city')
{{ $message }}
@enderror
@error('barangay')
{{ $message }}
@enderror
@error('zip_code')
{{ $message }}
@enderror
@error('street_address')
{{ $message }}
@enderror
Property Information
@error('meter_location')
{{ $message }}
@enderror
@error('property_description')
{{ $message }}
@enderror
Cancel
Application Processing: Your application will be reviewed within 2-3 business days. You will receive a reference number upon submission for tracking your application status.
@endsection @section('scripts') @endsection