@extends('layouts.partials.master') @section('title', 'Endereços') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Editar Endereço']) Voltar
@csrf @method('PUT')
@if ($errors->has('recipient_first_name'))
{{ $errors->first('recipient_first_name') }}
@endif
@if ($errors->has('recipient_last_name'))
{{ $errors->first('recipient_last_name') }}
@endif
@if ($errors->has('fiscal_number'))
{{ $errors->first('fiscal_number') }}
@endif
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
@if ($errors->has('address_line1'))
{{ $errors->first('address_line1') }}
@endif
@if ($errors->has('address_line2'))
{{ $errors->first('address_line2') }}
@endif
@if ($errors->has('postal_code'))
{{ $errors->first('postal_code') }}
@endif
@if ($errors->has('region_uuid'))
{{ $errors->first('region_uuid') }}
@endif
@if ($errors->has('district_code'))
{{ $errors->first('district_code') }}
@endif
@if ($errors->has('municipality_code'))
{{ $errors->first('municipality_code') }}
@else @endif
@if ($errors->has('primary'))
{{ $errors->first('primary') }}
@endif
@endsection @push('scripts') @vite('resources/js/geo_district/index.js') @vite('resources/js/usr_addresses/form.js') @endpush