@extends('layouts.admin') @section('title', 'Add Customer') @section('content')
{{-- Header --}}

Add Customer

Create a new customer account for the marketplace

@if($errors->any())

Please fix the following errors:

    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{-- Main Form --}}
{{-- Personal Information --}}

Personal Information

{{-- Security --}}

Account Security

{{-- Sidebar --}}
{{-- Profile Photo --}}

Profile Photo

{{-- Account Info --}}

Account Details

Role

Customer

Status

Active

{{-- Submit --}}
@push('scripts') @endpush @endsection