@extends('layouts.sellerlayouts.app') @section('title') My Profile | Company Name @endsection @push('css') @endpush @section('contents') @include('alerts.alerts')
My Profile
@if($myprofile->img_name==null) image @else image @endif

{{$myprofile->name}}

{{$myprofile->address}} {{!$myprofile->address==null?',':''}} {{$myprofile->city}} {{!$myprofile->city==null?',':''}} {{$myprofile->state}} {{!$myprofile->zipcode==null?'-':''}} {{$myprofile->zipcode}} {{$myprofile->country}}

Supper Admin

Status: Active

Join Date: {{$myprofile->created_at->format('d/m/Y')}}


Email {{$myprofile->email}}
Mobile {{$myprofile->mobile}}
DOB {{Carbon\Carbon::parse($myprofile->dob)->format('d-M-Y')}}
Gender {{$myprofile->gender}}
Change Password
@if ($errors->has('password'))

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

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

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

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

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

@endif
Profile Update
@csrf
@if ($errors->has('name'))

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

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

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

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

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

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

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

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

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

@endif
@include('seller.users.include.dob')
@if ($errors->has('gender'))

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

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

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

@endif
@endsection @push('js') @endpush