@extends('front.layout') @section('meta-keywords', "$seo->meta_keywords") @section('meta-description', "$seo->meta_description") @section('content')

{{ __('Edit Profile') }}

@includeif('user.dashboard-sidenav')
{{ __('Edit Profile') }}
@csrf
@if($errors->has('image'))

{{ $errors->first('image') }}

@endif
@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('address'))

{{ $errors->first('address') }}

@endif
@if($errors->has('country'))

{{ $errors->first('country') }}

@endif
@if($errors->has('state'))

{{ $errors->first('state') }}

@endif
@if($errors->has('zipcode'))

{{ $errors->first('zipcode') }}

@endif
@endsection