@extends('layouts.app') @section('title', 'Register') @section('content')

{{ $type === 'supplier' ? 'Become a Supplier' : 'Create Company Account' }}

{{ $type === 'supplier' ? 'Start selling your products to businesses' : 'Start procuring products for your business' }}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if($type === 'supplier')

Supplier Benefits

  • • Access to thousands of business customers
  • • Easy product listing and management
  • • Flexible delivery options
  • • Only 5% commission per sale

One-time registration fee: R500

@endif

Already have an account? Sign In

@endsection