@extends('layouts.frontend') @section('content')
{{ trans('global.my_profile') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if($errors->has('identity_card_number'))
{{ $errors->first('identity_card_number') }}
@endif
@if($errors->has('dob'))
{{ $errors->first('dob') }}
@endif
@if($errors->has('address_1'))
{{ $errors->first('address_1') }}
@endif
@if($errors->has('address_2'))
{{ $errors->first('address_2') }}
@endif
@if($errors->has('state_id'))
{{ $errors->first('state_id') }}
@endif
@if($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif
{{ trans('global.change_password') }}
@csrf
@if($errors->has('password')) {{ $errors->first('password') }} @endif
{{ trans('global.delete_account') }}
@csrf
@endsection @section('scripts') @endsection