@extends('layouts.admin') @section('title', 'Edit Merchant - Admin') @section('content')

Edit Merchant

Update merchant account information

Back to List
@if($errors->any()) @endif
@csrf @method('PUT')

Personal Information

@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror

Minimum 8 characters

Company Information

@error('company_name')

{{ $message }}

@enderror

Account Status

Account Status

Current status of this merchant account

@if($merchant->email_verified_at) Active @else Inactive @endif

Member Since: {{ $merchant->created_at->format('M d, Y') }}

Last Updated: {{ $merchant->updated_at->format('M d, Y h:i A') }}

@if($merchant->parcels)

Total Parcels: {{ $merchant->parcels->count() }}

@endif
Cancel
@endsection