@extends('layouts.frontend') @section('content')
@include('partials.frontend.profile.nav')
{{ trans('global.my_profile') }}
@csrf
{{ trans('cruds.customer.fields.name') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif

{{ trans('cruds.customer.fields.email') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif

{{ trans('cruds.customer.fields.phone') }}
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif

{{ trans('cruds.customer.fields.identity_card_number') }}
@if($errors->has('identity_card_number'))
{{ $errors->first('identity_card_number') }}
@endif

{{ trans('cruds.customer.fields.dob') }}
@if($errors->has('dob'))
{{ $errors->first('dob') }}
@endif

{{ trans('cruds.customer.fields.shipping_address') }}
@if($errors->has('shipping_address'))
{{ $errors->first('shipping_address') }}
@endif

{{ trans('cruds.customer.fields.state') }}
@if($errors->has('state_id'))
{{ $errors->first('state_id') }}
@endif

{{ trans('cruds.customer.fields.city') }}
@if($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif

{{ trans('cruds.customer.fields.postal_code') }}
@if($errors->has('postal_code'))
{{ $errors->first('postal_code') }}
@endif
{{ trans('global.back') }}
@endsection @section('scripts') @endsection