@extends('app.layout') @section('sub_content')
@include('app.account.nav')
@method('PATCH') @csrf
{{ __('Name') }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{ __('Phone') }}
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
{{ __('Address') }}
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
{{ __('City') }}
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
{{ __('Country') }}
{{ __('Cancel') }}
@endsection