@extends('layouts.app') @section('title','Issue Shares') @section('page-title','Share Registry') @section('content')
Back
Issue Shares to Member
Upfront payment or monthly salary deduction plan
@csrf
Share Details
@error('member_id')
{{ $message }}
@enderror
@error('num_shares')
{{ $message }}
@enderror
{{-- Payment Method --}}
@foreach([ 'upfront' => ['fa-bolt', '#2e7d52', 'Upfront Payment', 'Member pays full amount immediately'], 'salary_deduction' => ['fa-calendar-days','#1565c0','Salary Deduction','Spread across monthly payroll deductions'], ] as $val => [$icon,$color,$label,$desc])
@endforeach
Cancel
Cost Estimate
Price per share ${{ number_format(\App\Services\ShareService::pricePerShareUsd(),2) }}
Price per share (LRD) L${{ number_format(\App\Services\ShareService::pricePerShareLrd(),2) }}

Total (USD)
Total (LRD)
Monthly deduction
Share Settings
Price per Share ${{ number_format(\App\Services\ShareService::pricePerShareUsd(),2) }} USD
Max Shares per Member {{ number_format(\App\Services\ShareService::maxSharesPerMember()) }}
Exchange Rate L${{ number_format($rate,2) }}=US$1
Adjust in Settings
@push('scripts') @endpush @endsection