Files
freeu-project/resources/views/Frontend/Pages/dummy/seller-form-op.blade.php
Ritikesh yadav c661166e1d first commit
2024-03-28 14:52:40 +05:30

125 lines
6.2 KiB
PHP

@extends('Frontend.layouts.master')
@section('content')
<div>
<div class="market-list">
<div class="banner right-ivestment">
<div class="container row d-flex align-items-center">
<div class="col-md-6 content aos-init aos-animate" data-aos="fade-right">
<h1 class="invest-header si-hd">Sell your investment's today!</h1>
<ul class="si-hd_p">
<li>Verified Buyers</li>
<li>Expert Verification</li>
<li>Sell From Your Home</li>
</ul>
</div>
<div class="col-md-6 bgn-image aos-init aos-animate" data-aos="fade-left">
<img src="{{imagePath('public/assets/media/FrontendImages/r-invest.png')}}">
</div>
</div>
</div>
<div class="form">
<div class="container">
<form id="aif-seller-form" method="POST" novalidate="novalidate">
<div class="row">
<div class="form-group col-md-6">
<label>Property Category</label>
<select name="product_category" id="">
<option value="">Select Property Category</option>
<option value="Peer To Peer Lending">Peer To Peer Lending</option>
<option value="Invoice Discounting">Invoice Discounting</option>
<option value="Clean And Green Asset">Clean and Green Asset</option>
<option value="Venture Debt">Venture Debt</option>
<option value="High Yield Finance">High Yield Finance</option>
<option value="Securitized debt Instrument">Securitized debt Instrument</option>
<option value="Lease Based Financing">Lease Based Financing</option>
<option value="Revenue Based Financing">Revenue Based Financing</option>
</select>
</div>
<div class="form-group col-md-6">
<label>Security Name</label>
<input type="text" name="security_name">
</div>
<div class="form-group col-md-6">
<label>Instrument Type</label>
<select name="instrument_type" id="">
<option value="">Select Instrument Type</option>
<option value="Non-Convertible debentures">Non-Convertible debentures</option>
<option value="Convertible debenture">Convertible debenture</option>
<option value="Market Linked Debenture">Market Linked Debenture</option>
<option value="Commercial Paper">Commercial Paper</option>
<option value="Secured Bonds">Secured Bonds</option>
<option value="Unsecured Bonds">Unsecured Bonds</option>
<option value="Others">Others</option>
</select>
</div>
<div class="form-group col-md-6">
<label>Instrument Issuer</label>
<input type="text" name="instrument_issuer">
</div>
<div class="form-group col-md-6">
<label>ISIN</label>
<input type="text" name="isin">
</div>
<div class="form-group col-md-6">
<label>Credit Rating</label>
<input type="text" name="credit_rating">
</div>
<div class="form-group col-md-6">
<label>Listed</label>
<select name="listed" id="">
<option value="">Please Select Listed</option>
<option value="Yes">Yes</option>
<option value="No">No</option>
</select>
</div>
<div class="form-group col-md-6">
<label>Date Of Original Investment</label>
<input type="date" name="date_of_original_investment">
</div>
<div class="form-group col-md-6">
<label>Amount Invested</label>
<input type="number" name="amount_invested">
</div>
<div class="form-group col-md-6">
<label>No. Of Units Held</label>
<input type="number" name="no_of_units_held">
</div>
<div class="form-group col-md-6">
<label>Payout Frequency</label>
<input type="number" name="payout_frequency">
</div>
<div class="form-group col-md-6">
<label>Face Value Per Unit</label>
<input type="number" name="face_value_per_unit">
</div>
<div class="form-group col-md-6">
<label>Coupon Rate(%)</label>
<input type="number" name="coupon_rate_in_pct">
</div>
<div class="form-group col-md-6">
<label>Principal Repaid (if any)</label>
<input type="number" name="principal_repaid">
</div>
<div class="form-group col-md-6">
<label>Maturity Date</label>
<input type="number" name="maturity_date">
</div>
<div class="form-group col-md-6">
<label>No. Of Units Offered For Sale</label>
<input type="number" name="no_of_units_offered_for_sale">
</div>
<div class="form-group col-md-6">
<label>Expected Sale Price Per Unit</label>
<input type="number" name="expected_sale_price_per_unit">
</div>
<div class="text-center form-group col-md-12">
<button type="submit" class="blue-btn text-center">Review & Submit</button>
<a href="{{route('profile_dashboard')}}">Next</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
@endsection