@extends('customer.layout.main') @section('content')

Edit Profile Management

@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
@if ($errors->has('state'))
{{ $errors->first('state') }}
@endif
@if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if ($errors->has('district'))
{{ $errors->first('district') }}
@endif
@if ($errors->has('pincode_number'))
{{ $errors->first('pincode_number') }}
@endif


@endsection @section('js') @endsection