@extends('layouts.auth') @section('title') Edit Profile @endsection @section('content') @push('page_style') @endpush
Home >> Profile @if(auth()->user()->isCompanySeller()) @if (empty($userObject->checkRequestStatus())) Become a Verified Seller @else {{$userObject->checkRequestStatus()}} @endif @endif

Edit Profile

profile
@csrf
Remove
@csrf
Basic Info

* indicates to required or mandatory field

@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif

@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @elseif($errors->has('phone_code')) {{ $errors->first('phone_code') }} @elseif($errors->has('iso_code')) {{ $errors->first('iso_code') }} @endif
@if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
Basic Info
@if (auth()->user()->isCompanySeller())
@if ($errors->has('company_name')) {{ $errors->first('company_name') }} @endif
@endif
@if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif
@if ($errors->has('post_code')) {{ $errors->first('post_code') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@push('page_script') @endpush @endsection