@extends('layouts.app') @section('content')

{{ $address->exists ? 'Edit Address' : 'Add Address' }}

@csrf @if($address->exists) @method('PATCH') @endif @foreach (['recipient_name' => 'Recipient Name', 'mobile' => 'Mobile', 'unit_number' => 'Unit/House Number', 'street' => 'Street', 'suburb' => 'Suburb', 'city' => 'City', 'province' => 'Province', 'postal_code' => 'Postal Code'] as $name => $label) @endforeach
@endsection