@extends('apex-layouts.main') @section('content')
@include('member.home.top_navigation')
@if ($model->exists) @method('PUT') @endif @csrf

{{ ($model->exists)?'Edit Address':'New Address' }}

@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('street')) {{ $errors->first('street') }} @endif
@if ($errors->has('houseNum')) {{ $errors->first('houseNum') }} @endif
@if ($errors->has('block')) {{ $errors->first('block') }} @endif
@if ($errors->has('area')) {{ $errors->first('area') }} @endif
@if ($errors->has('postalcode')) {{ $errors->first('postalcode') }} @endif
breakfast_address_id == $model->id )? 'checked' : '' : ''}} name="typeAddress[breakfast]" value="BreakFast"> BreakFast lunch_address_id == $model->id )? 'checked' : '' : ''}} name="typeAddress[lunch]" value="Lunch">Lunch dinner_address_id == $model->id )? 'checked' : '' : ''}} name="typeAddress[dinner]" value="Dinner"> Dinner
Back
@endsection @section('scripts') @stop @section('styles') @stop