Files
freeu-project/resources/views/Frontend/Pages/dummy/seller-form-fre.blade.php
2024-04-03 19:50:18 +05:30

91 lines
4.3 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 Name</label>
<input type="text" name="property_name" value="">
</div>
<div class="form-group col-md-6">
<label>Property Address</label>
<input type="text" name="property_address" value="">
</div>
<div class="form-group col-md-6">
<label>Property Grade</label>
<input type="text" name="property_grade" value="">
</div>
<div class="form-group col-md-6">
<label>Asset Type</label>
<!-- <input type="text" name="asset_type" value=""> -->
<select name="asset_type" id="">
<option value="">Please Select Asset Type</option>
<option value="Warehouse">Warehouse</option>
<option value="Corporate Office">Corporate Office</option>
<option value="Other">Other</option>
</select>
</div>
<div class="form-group col-md-6">
<label>Annual Rental Yield Earned</label>
<input type="number" name="annual_rental_yield_earned" value="">
</div>
<div class="form-group col-md-6">
<label>Rental Escalation</label>
<input type="text" name="rental_escalation" value="">
</div>
<div class="form-group col-md-6">
<label>Fractional Real Estate Platform</label>
<!-- <input type="text" name="fractional_real_estate_platform" value=""> -->
<select name="fractional_real_estate_platform" id="">
<option value="">Please Select Platform</option>
<option value="Strata">Strata</option>
<option value="PropShare">PropShare</option>
<option value="Myre">Myre</option>
</select>
</div>
<div class="form-group col-md-6">
<label>Date Of Investment</label>
<input type="email" name="date_of_investment" value="">
</div>
<div class="form-group col-md-6">
<label>Original Amount Invested</label>
<input type="number" name="original_amount_invested" value="">
</div>
<div class="form-group col-md-6">
<label>Current Market Value of the Property</label>
<input type="number" name="current_market_value_of_the_property" value="">
</div>
<div class="form-group col-md-6">
<label>Expected Selling Price</label>
<input type="number" name="expected_selling_price" value="">
</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