fixing bugs
This commit is contained in:
@@ -40,6 +40,7 @@ use App\Models\MonthlyUpdateMaster;
|
||||
use Illuminate\Support\Str;
|
||||
use App\Models\ProductPhotoDocuments;
|
||||
use Illuminate\Support\Facades\Validator;
|
||||
use File;
|
||||
|
||||
class ManageFreeUInvestmentController extends Controller
|
||||
{
|
||||
|
||||
@@ -402,7 +402,7 @@ class ManageUserProductController extends Controller
|
||||
|
||||
public function editProduct(Request $request)
|
||||
{
|
||||
// dd($request->all());
|
||||
dd($request->all());
|
||||
// return $request->update_id;
|
||||
$update_data = MonthlyUpdateMaster::where('id', $request->eid)->update([
|
||||
"users_id" => $request->euserid,
|
||||
|
||||
@@ -28,9 +28,9 @@ class StoreCompanyKYC extends FormRequest
|
||||
'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,' . auth()->guard('users')->user()->id . ',users_id',
|
||||
'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,' . auth()->guard('users')->user()->id . ',users_id',
|
||||
'dob' => 'required',
|
||||
'occupation' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'place_of_birth' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'gross_annual_income' => 'required|regex:/^[0-9]+$/',
|
||||
'occupation' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'gross_annual_income' => 'regex:/^[0-9]+$/',
|
||||
'memorandum_or_articles_of_association' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'company_pan' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'certificate_of_incorporation' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
|
||||
@@ -28,11 +28,11 @@ class StoreIndividualKYC extends FormRequest
|
||||
'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.auth()->guard('users')->user()->id.',users_id',
|
||||
'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.auth()->guard('users')->user()->id.',users_id',
|
||||
'dob' => 'required',
|
||||
'occupation' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'occupation' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'father_name' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'mother_name' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'place_of_birth' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'gross_annual_income' => 'required|regex:/^[0-9]+$/',
|
||||
'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'gross_annual_income' => 'regex:/^[0-9]+$/',
|
||||
'pan_card' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'proof_of_address' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'Photograph' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
|
||||
@@ -25,14 +25,14 @@ class StoreNRIKYC extends FormRequest
|
||||
{
|
||||
return [
|
||||
'name' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.auth()->guard('users')->user()->id.',users_id',
|
||||
'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.auth()->guard('users')->user()->id.',users_id',
|
||||
'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,' . auth()->guard('users')->user()->id . ',users_id',
|
||||
'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,' . auth()->guard('users')->user()->id . ',users_id',
|
||||
'dob' => 'required',
|
||||
'father_name' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'mother_name' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'occupation' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'place_of_birth' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'gross_annual_income' => 'required|regex:/^[0-9]+$/',
|
||||
'father_name' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'mother_name' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'occupation' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'gross_annual_income' => 'regex:/^[0-9]+$/',
|
||||
'passport' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'pio_oci_card' => 'mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
// 'tin' => 'required',
|
||||
@@ -41,7 +41,7 @@ class StoreNRIKYC extends FormRequest
|
||||
'utility' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'rental_agreement' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'passport_size_photograph' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'cancelled_cheque' => 'mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'cancelled_cheque' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'copy_of_cml' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'trc_copy' => 'mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'form_10f' => 'mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
@@ -49,7 +49,8 @@ class StoreNRIKYC extends FormRequest
|
||||
];
|
||||
}
|
||||
|
||||
public function messages(){
|
||||
public function messages()
|
||||
{
|
||||
return [
|
||||
'required' => 'This :attribute field is required',
|
||||
'unique' => "This :attribute field must be unique",
|
||||
|
||||
@@ -28,11 +28,11 @@ class StoreOtherKYC extends FormRequest
|
||||
'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.auth()->guard('users')->user()->id.',users_id',
|
||||
'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.auth()->guard('users')->user()->id.',users_id',
|
||||
'dob' => 'required',
|
||||
'father_name' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'mother_name' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'occupation' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'place_of_birth' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'gross_annual_income' => 'required|regex:/^[0-9]+$/',
|
||||
'father_name' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'mother_name' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'occupation' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'gross_annual_income' => 'regex:/^[0-9]+$/',
|
||||
'proof_of_identity_pan_card' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'addressproof_bank_statement_or_utility_bill' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'certificate_of_registration' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
|
||||
@@ -28,11 +28,11 @@ class StorePartnerShipKYC extends FormRequest
|
||||
'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.auth()->guard('users')->user()->id.',users_id',
|
||||
'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.auth()->guard('users')->user()->id.',users_id',
|
||||
'dob' => 'required',
|
||||
'father_name' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'mother_name' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'occupation' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'place_of_birth' => 'required|regex:/^[a-zA-Z\s]+$/',
|
||||
'gross_annual_income' => 'required|regex:/^[0-9]+$/',
|
||||
'father_name' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'mother_name' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'occupation' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'place_of_birth' => 'regex:/^[a-zA-Z\s]+$/',
|
||||
'gross_annual_income' => 'regex:/^[0-9]+$/',
|
||||
'true_copy_of_partnership_deed' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'registration_certificate' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
'pan_card' => 'required|mimes:jpeg,png,jpg,pdf|max:2048',
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
public/uploads/product/fact_sheet/1718003682_factsheet.pdf
Normal file
BIN
public/uploads/product/fact_sheet/1718003682_factsheet.pdf
Normal file
Binary file not shown.
BIN
public/uploads/product/presentation/1718003682_presentation.pdf
Normal file
BIN
public/uploads/product/presentation/1718003682_presentation.pdf
Normal file
Binary file not shown.
BIN
public/uploads/real_estate/documents/1718002762.documents1jpg
Normal file
BIN
public/uploads/real_estate/documents/1718002762.documents1jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 83 KiB |
BIN
public/uploads/real_estate/photos/1718002699.photos1jpg
Normal file
BIN
public/uploads/real_estate/photos/1718002699.photos1jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 83 KiB |
@@ -1119,7 +1119,7 @@
|
||||
<!--end::Input-->
|
||||
|
||||
</div>
|
||||
<div class="col-md-6 mt-4">
|
||||
{{-- <div class="col-md-6 mt-4">
|
||||
<!--begin::Label-->
|
||||
<label class="fs-6 fw-semibold form-label mt-3">
|
||||
<span class="">Photos</span>
|
||||
@@ -1129,8 +1129,8 @@
|
||||
<!--begin::Input-->
|
||||
<input type="file" class="form-control form-control-solid" name="photos[]" placeholder='Upload Photos' multiple/>
|
||||
<!--end::Input-->
|
||||
</div>
|
||||
<div class="col-md-6 mt-4">
|
||||
</div> --}}
|
||||
{{-- <div class="col-md-6 mt-4">
|
||||
<!--begin::Label-->
|
||||
<label class="fs-6 fw-semibold form-label mt-3">
|
||||
<span class="">Documents</span>
|
||||
@@ -1140,7 +1140,7 @@
|
||||
<!--begin::Input-->
|
||||
<input type="file" class="form-control form-control-solid" name="documents[]" placeholder='Upload Documents' multiple/>
|
||||
<!--end::Input-->
|
||||
</div>
|
||||
</div> --}}
|
||||
|
||||
<div class="col-md-6 mt-4">
|
||||
<label class="fs-6 fw-semibold form-label mt-3">
|
||||
|
||||
@@ -342,11 +342,23 @@
|
||||
<div class="form-control form-control-solid "><span
|
||||
id="pan"></span></div>
|
||||
</div>
|
||||
{{-- <div class="col-md-12 fv-row mt-5">
|
||||
<div class="col-md-6 fv-row mt-5">
|
||||
<label class="fs-6 fw-semibold mb-2">Counter Party</label>
|
||||
<div class="form-control form-control-solid "><span
|
||||
id="counterparty"></span></div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 fv-row mt-5">
|
||||
<label class="fs-6 fw-semibold mb-2">Spv Details</label>
|
||||
<div class="form-control form-control-solid "><span
|
||||
id="spvdetails"></span></div>
|
||||
</div> --}}
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 fv-row mt-5">
|
||||
<label class="fs-6 fw-semibold mb-2">Account Number</label>
|
||||
<div class="form-control form-control-solid "><span
|
||||
id="accountnumber"></span></div>
|
||||
</div>
|
||||
<!--end::Col-->
|
||||
{{-- @endforeach --}}
|
||||
</div>
|
||||
@@ -416,7 +428,7 @@
|
||||
<label class="required fs-6 fw-semibold mb-2">Categories
|
||||
</label>
|
||||
|
||||
<input class="form-control form-control-solid "
|
||||
<input class="form-control form-control-solid "
|
||||
name="categories" type="text" id="ecategories"
|
||||
readonly />
|
||||
</div>
|
||||
@@ -424,20 +436,20 @@
|
||||
<div class="col-md-12 fv-row mt-5">
|
||||
<label class="required fs-6 fw-semibold mb-2">Custom Id</label>
|
||||
|
||||
<input class="form-control form-control-solid " readonly
|
||||
<input class="form-control form-control-solid " readonly
|
||||
name="custom_id" type="text" id="ecustomid" />
|
||||
</div>
|
||||
<div class="col-md-12 fv-row mt-5">
|
||||
<label class="required fs-6 fw-semibold mb-2">Investor
|
||||
<label class="required fs-6 fw-semibold mb-2">Investor
|
||||
Name</label>
|
||||
|
||||
<input class="form-control form-control-solid " type="text"
|
||||
<input class="form-control form-control-solid " type="text"
|
||||
name="investor_name" id="einvester_name" />
|
||||
</div>
|
||||
<div class="col-md-12 fv-row mt-5">
|
||||
<label class="required fs-6 fw-semibold mb-2">Pan</label>
|
||||
|
||||
<input class="form-control form-control-solid " name="pan"
|
||||
<input class="form-control form-control-solid " name="pan"
|
||||
type="text" id="epan" />
|
||||
</div>
|
||||
<div class="col-md-12 fv-row mt-5">
|
||||
@@ -456,16 +468,16 @@
|
||||
<label class="required fs-6 fw-semibold mb-2">Product
|
||||
Category</label>
|
||||
|
||||
<input class="form-control form-control-solid "
|
||||
<input class="form-control form-control-solid "
|
||||
name="product_category" type="text"
|
||||
id="eproductcategory" />
|
||||
</div>
|
||||
<div class="col-md-12 fv-row mt-5">
|
||||
<label class="required fs-6 fw-semibold mb-2">Investment
|
||||
<label class="required fs-6 fw-semibold mb-2">Investment
|
||||
Platform
|
||||
</label>
|
||||
|
||||
<input class="form-control form-control-solid "
|
||||
<input class="form-control form-control-solid "
|
||||
name="investment_platform" type="text"
|
||||
id="einvestmentplatform" />
|
||||
</div>
|
||||
@@ -473,12 +485,12 @@
|
||||
<label class="required fs-6 fw-semibold mb-2">Product
|
||||
Name</label>
|
||||
|
||||
<input class="form-control form-control-solid "
|
||||
<input class="form-control form-control-solid "
|
||||
name="product_name" type="text" id="eproductname" />
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-md-12 fv-row mt-5">
|
||||
<div class="col-md-12 fv-row mt-5 " id="Counter">
|
||||
<label class="required fs-6 fw-semibold mb-2">Counter
|
||||
Party</label>
|
||||
|
||||
@@ -734,6 +746,17 @@
|
||||
})
|
||||
});
|
||||
|
||||
function hideDiv(assignData,divId,assignId)
|
||||
{
|
||||
if(assignData == '');
|
||||
{
|
||||
$(divId).addClass('d-none');
|
||||
}
|
||||
if(assignData != ''){
|
||||
$(assignId).val(assignData);
|
||||
}
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
// alert("hello");
|
||||
$('.action_edit').click(function() {
|
||||
|
||||
@@ -53,12 +53,13 @@
|
||||
</div>
|
||||
<br />
|
||||
@endif
|
||||
|
||||
|
||||
@if($realEstate->property_location || $realEstate->project_type ||$realEstate->current_status )
|
||||
<div class="categeory">
|
||||
<div class="details aos-init aos-animate" data-aos="zoom-in">
|
||||
<div class="tables row">
|
||||
<div class="col-md-4" {{dNone($realEstate->property_location)}}>
|
||||
<div class="col-md-4 {{dNone($realEstate->property_location)}}" >
|
||||
<p>Property Location</p>
|
||||
<span>{{ $realEstate->property_location ?? '-' }}</span>
|
||||
</div>
|
||||
@@ -162,8 +163,9 @@
|
||||
</div>
|
||||
@endif
|
||||
<div class="categeory">
|
||||
@if($realEstate->no_of_bedrooms || $realEstate->no_of_restrooms || $realEstate->no_of_floors || $realEstate->total_towers || $realEstate->builder_details || $realEstate->landmarks || $realEstate->completed_in || $realEstate->total_units || $realEstate->unit_type )
|
||||
<div class="details aos-init aos-animate" data-aos="zoom-in">
|
||||
@if($realEstate->no_of_bedrooms || $realEstate->no_of_restrooms || $realEstate->no_of_floors)
|
||||
|
||||
<div class="tables row">
|
||||
<div class="col-md-4 {{dNone($realEstate->no_of_bedrooms)}}">
|
||||
<p>No. Of Bedrooms</p>
|
||||
@@ -183,8 +185,8 @@
|
||||
<span>{{ $realEstate->slug ?? '-' }}</span>
|
||||
</div> --}}
|
||||
</div>
|
||||
@endif
|
||||
@if($realEstate->total_towers || $realEstate->builder_details || $realEstate->landmarks )
|
||||
|
||||
|
||||
<div class="tables row">
|
||||
<div class="col-md-4 {{dNone($realEstate->total_towers)}}">
|
||||
<p>Total Towers</p>
|
||||
@@ -199,8 +201,7 @@
|
||||
<span>{{ $realEstate->landmarks ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
@if($realEstate->completed_in || $realEstate->total_units || $realEstate->unit_type )
|
||||
|
||||
<div class="tables row">
|
||||
<div class="col-md-4 {{dNone($realEstate->completed_in)}}">
|
||||
<p>Completed In</p>
|
||||
@@ -210,14 +211,16 @@
|
||||
<p>Total Units</p>
|
||||
<span>{{ $realEstate->total_units ?? '-' }}</span>
|
||||
</div>
|
||||
<div class="col-md-4{{dNone($realEstate->unit_type)}} ">
|
||||
<div class="col-md-4 {{dNone($realEstate->unit_type)}} ">
|
||||
<p>Unit Type</p>
|
||||
<span>{{ $realEstate->unit_type ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="categeory">
|
||||
<div class="details aos-init aos-animate" data-aos="zoom-in">
|
||||
@if($realEstate->electricity_status || $realEstate->fire_safety_measures || $realEstate->water_facility )
|
||||
|
||||
@@ -69,21 +69,21 @@
|
||||
max="2006-01-11">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Place Of Incorporation</label>
|
||||
<label class="">Place Of Incorporation</label>
|
||||
<input type="text" id="place_of_birth" name="place_of_birth"
|
||||
placeholder="Enter Place Of Incorporation"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Gross Annual Income</label>
|
||||
<label class="">Gross Annual Income</label>
|
||||
<input type="text" id="gross_annual_income" name="gross_annual_income"
|
||||
placeholder="Enter Gross Annual Income"
|
||||
onkeydown="return /^[0-9]+$/i.test(event.key)"
|
||||
class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Occupation / Business</label>
|
||||
<label class="">Occupation / Business</label>
|
||||
<input type="text" id="occupation" name="occupation"
|
||||
placeholder="Enter Occupation/Business"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
@@ -251,9 +251,9 @@
|
||||
// father_name: 'required',
|
||||
// mother_name: 'required',
|
||||
dob: 'required',
|
||||
place_of_birth: 'required',
|
||||
gross_annual_income: 'required',
|
||||
occupation: 'required',
|
||||
// place_of_birth: 'required',
|
||||
// gross_annual_income: 'required',
|
||||
// occupation: 'required',
|
||||
memorandum_or_articles_of_association: 'required',
|
||||
company_pan: 'required',
|
||||
List_of_directors_or_authorized_signatories:'required',
|
||||
@@ -271,7 +271,7 @@
|
||||
email: 'Email is required',
|
||||
// father_name: "Father's Name is required",
|
||||
// mother_name: "Mother's Name is required",
|
||||
dob: 'Date Of Birth is required',
|
||||
dob: 'Date Of Incorporation is required',
|
||||
place_of_birth: 'Place Of Birth is required',
|
||||
gross_annual_income: 'Gross Annual Income is required',
|
||||
occupation: 'Occupation / Business is required',
|
||||
|
||||
@@ -56,14 +56,14 @@
|
||||
class="iv-input form-control p-2" value="{{$user->email}}">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Father's Name</label>
|
||||
<label class="">Father's Name</label>
|
||||
<input type="text" id="father_name" name="father_name"
|
||||
placeholder="Enter Father's Name"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Mother's Name</label>
|
||||
<label class="">Mother's Name</label>
|
||||
<input type="text" id="mother_name" name="mother_name"
|
||||
placeholder="Enter Mother's Name"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
@@ -75,19 +75,19 @@
|
||||
class="iv-input form-control p-2" max="2006-01-11">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Place Of Birth</label>
|
||||
<label class="">Place Of Birth</label>
|
||||
<input type="text" id="place_of_birth" name="place_of_birth"
|
||||
placeholder="Enter Place Of Birth"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Gross Annual Income</label>
|
||||
<label class="">Gross Annual Income</label>
|
||||
<input type="number" id="gross_annual_income" name="gross_annual_income"
|
||||
placeholder="Enter Gross Annual Income" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Occupation / Business</label>
|
||||
<label class="">Occupation / Business</label>
|
||||
<input type="text" id="occupation" name="occupation"
|
||||
placeholder="Enter Occupation/Business"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
@@ -174,12 +174,12 @@
|
||||
required: true,
|
||||
ValidEmail: true,
|
||||
},
|
||||
father_name: 'required',
|
||||
mother_name: 'required',
|
||||
// father_name: 'required',
|
||||
// mother_name: 'required',
|
||||
dob: 'required',
|
||||
place_of_birth: 'required',
|
||||
gross_annual_income: 'required',
|
||||
occupation: 'required',
|
||||
// place_of_birth: 'required',
|
||||
// gross_annual_income: 'required',
|
||||
// occupation: 'required',
|
||||
pan_card: 'required',
|
||||
proof_of_address: 'required',
|
||||
Photograph: 'required',
|
||||
|
||||
@@ -54,11 +54,11 @@
|
||||
<input type="email" id="email" name="email" placeholder="Enter Email" class="iv-input form-control p-2" value="{{$user->email}}">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Father Name</label>
|
||||
<label class="">Father Name</label>
|
||||
<input type="text" id="father_name" name="father_name" placeholder="Enter Father Name" onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Mother Name</label>
|
||||
<label class="">Mother Name</label>
|
||||
<input type="text" id="mother_name" name="mother_name" placeholder="Enter Mother Name" onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
@@ -66,15 +66,15 @@
|
||||
<input type="date" id="dob" name="dob" placeholder="Enter Date Of Birth" class="iv-input form-control p-2" max="2006-01-11">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Place Of Birth</label>
|
||||
<label class="">Place Of Birth</label>
|
||||
<input type="text" id="place_of_birth" name="place_of_birth" placeholder="Enter Place Of Birth" onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Gross Annual Income</label>
|
||||
<label class="">Gross Annual Income</label>
|
||||
<input type="text" id="gross_annual_income" name="gross_annual_income" placeholder="Enter Gross Annual Income" onkeydown="return /^[0-9]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Occupation / Business</label>
|
||||
<label class="">Occupation / Business</label>
|
||||
<input type="text" id="occupation" name="occupation" placeholder="Enter Occupation/Business" onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
@@ -82,11 +82,11 @@
|
||||
<input type="file" id="passport" name="passport" class="iv-input form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label for="email" class="mandatory pio">PIO/OCI Card</label>
|
||||
<label for="email" class="pio">PIO/OCI Card</label>
|
||||
<input type="file" id="pio_oci_card" name="pio_oci_card" class="iv-input form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory" for="email">TIN (Tax Identification Number)</label>
|
||||
<label class="" for="email">TIN (Tax Identification Number)</label>
|
||||
<input type="file" id="tin" name="tin" class="iv-input form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4 mt-4">
|
||||
@@ -124,15 +124,15 @@
|
||||
<input type="file" id="cancelled_cheque" name="cancelled_cheque" class="iv-input form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class=" mandatory">TRC Copy</label>
|
||||
<label class=" ">TRC Copy</label>
|
||||
<input type="file" id="trc_copy" name="trc_copy" class="iv-input form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class=" mandatory">Form 10F</label>
|
||||
<label class=" ">Form 10F</label>
|
||||
<input type="file" id="form_10f" name="form_10f" class="iv-input form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class=" mandatory">No PE Declaration</label>
|
||||
<label class=" ">No PE Declaration</label>
|
||||
<input type="file" id="no_pe_declaration" name="no_pe_declaration" class="iv-input form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
</div>
|
||||
@@ -182,16 +182,16 @@
|
||||
required: true,
|
||||
ValidEmail: true,
|
||||
},
|
||||
father_name: 'required',
|
||||
mother_name: 'required',
|
||||
// father_name: 'required',
|
||||
// mother_name: 'required',
|
||||
dob: 'required',
|
||||
place_of_birth: 'required',
|
||||
gross_annual_income: 'required',
|
||||
occupation: 'required',
|
||||
// place_of_birth: 'required',
|
||||
// gross_annual_income: 'required',
|
||||
// occupation: 'required',
|
||||
passport: 'required',
|
||||
pan_card: 'required',
|
||||
proof_of_address_of_india: 'required',
|
||||
// proof_of_address_of_foreign: 'required',
|
||||
proof_of_address_of_foreign: 'required',
|
||||
utility: 'required',
|
||||
rental_agreement: 'required',
|
||||
passport_size_photograph: 'required',
|
||||
|
||||
@@ -49,11 +49,11 @@
|
||||
<input type="email" id="email" name="email" placeholder="Enter Email" class="iv-input form-control p-2" value="{{$user->email}}">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Father Name</label>
|
||||
<label class="">Father Name</label>
|
||||
<input type="text" id="father_name" name="father_name" placeholder="Enter Father Name" onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Mother Name</label>
|
||||
<label class="">Mother Name</label>
|
||||
<input type="text" id="mother_name" name="mother_name" placeholder="Enter Mother Name" onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
@@ -61,15 +61,15 @@
|
||||
<input type="date" id="dob" name="dob" placeholder="Enter Date Of Birth" class="iv-input form-control p-2" max="2006-01-11">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Place Of Birth</label>
|
||||
<label class="">Place Of Birth</label>
|
||||
<input type="text" id="place_of_birth" name="place_of_birth" placeholder="Enter Place Of Birth" onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Gross Annual Income</label>
|
||||
<label class="">Gross Annual Income</label>
|
||||
<input type="text" id="gross_annual_income" name="gross_annual_income" placeholder="Enter Gross Annual Income" maxlength="25" onkeydown="return /^[0-9]{25}+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Occupation / Business</label>
|
||||
<label class="">Occupation / Business</label>
|
||||
<input type="text" id="occupation" name="occupation" placeholder="Enter Occupation/Business" onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)" class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
@@ -89,11 +89,11 @@
|
||||
<input type="file" id="" name="list_of_authorised_signatories" class="acc-dropdown form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">PAN Card Copy of Authorized signatory</label>
|
||||
<label class="">PAN Card Copy of Authorized signatory</label>
|
||||
<input type="file" id="" name="pan_card_copy_of_authorized_signatory[]" multiple="" class="acc-dropdown form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Aadhar Card Copy of Authorized signatory</label>
|
||||
<label class="">Aadhar Card Copy of Authorized signatory</label>
|
||||
<input type="file" id="" name="aadhar_card_copy_of_authorized_signatory[]" multiple="" class="iv-input form-control p-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
@@ -113,7 +113,7 @@
|
||||
<input type="file" id="" name="copy_of_audited_balance_sheet_for_the_last_2_F_Y" class="iv-input form-control p-2 mt-2" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Passport size photograph signed across of all Authorized
|
||||
<label class="">Passport size photograph signed across of all Authorized
|
||||
Signatories /
|
||||
Directors</label>
|
||||
<input type="file" id="" name="passport_photo_signed_authorized_signatories_or_directors[]" multiple="" class="iv-input form-control p-2 mt-1" accept="image/jpeg,image/png,image/jpg,application/pdf">
|
||||
@@ -164,20 +164,20 @@
|
||||
required: true,
|
||||
ValidEmail: true,
|
||||
},
|
||||
father_name: 'required',
|
||||
mother_name: 'required',
|
||||
// father_name: 'required',
|
||||
// mother_name: 'required',
|
||||
dob: 'required',
|
||||
place_of_birth: 'required',
|
||||
gross_annual_income: 'required',
|
||||
occupation: 'required',
|
||||
// place_of_birth: 'required',
|
||||
// gross_annual_income: 'required',
|
||||
// occupation: 'required',
|
||||
certificate_of_registration:'required',
|
||||
addressproof_bank_statement_or_utility_bill: 'required',
|
||||
proof_of_identity_pan_card: 'required',
|
||||
'pan_card_copy_of_authorized_signatory[]': 'required',
|
||||
'aadhar_card_copy_of_authorized_signatory[]': 'required',
|
||||
// 'pan_card_copy_of_authorized_signatory[]': 'required',
|
||||
// 'aadhar_card_copy_of_authorized_signatory[]': 'required',
|
||||
cml_copy: 'required',
|
||||
cancelled_cheque: 'required',
|
||||
'passport_photo_signed_authorized_signatories_or_directors[]': 'required',
|
||||
// 'passport_photo_signed_authorized_signatories_or_directors[]': 'required',
|
||||
list_of_authorised_signatories:"required"
|
||||
},
|
||||
messages: {
|
||||
|
||||
@@ -56,14 +56,14 @@
|
||||
class="iv-input form-control p-2" value="{{$user->email}}">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Father Name</label>
|
||||
<label class="">Father Name</label>
|
||||
<input type="text" id="father_name" name="father_name"
|
||||
placeholder="Enter Father Name"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Mother Name</label>
|
||||
<label class="">Mother Name</label>
|
||||
<input type="text" id="mother_name" name="mother_name"
|
||||
placeholder="Enter Mother Name"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
@@ -76,21 +76,21 @@
|
||||
max="2006-01-11">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Place Of Birth</label>
|
||||
<label class="">Place Of Birth</label>
|
||||
<input type="text" id="place_of_birth" name="place_of_birth"
|
||||
placeholder="Enter Place Of Birth"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Gross Annual Income</label>
|
||||
<label class="">Gross Annual Income</label>
|
||||
<input type="text" id="gross_annual_income" name="gross_annual_income"
|
||||
placeholder="Enter Gross Annual Income"
|
||||
onkeydown="return /^[0-9]+$/i.test(event.key)"
|
||||
class="iv-input form-control p-2">
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="mandatory">Occupation / Business</label>
|
||||
<label class="">Occupation / Business</label>
|
||||
<input type="text" id="occupation" name="occupation"
|
||||
placeholder="Enter Occupation/Business"
|
||||
onkeydown="return /^[a-zA-Z\s]+$/i.test(event.key)"
|
||||
@@ -234,12 +234,12 @@
|
||||
required: true,
|
||||
ValidEmail: true,
|
||||
},
|
||||
father_name: 'required',
|
||||
mother_name: 'required',
|
||||
// father_name: 'required',
|
||||
// mother_name: 'required',
|
||||
dob: 'required',
|
||||
place_of_birth: 'required',
|
||||
gross_annual_income: 'required',
|
||||
occupation: 'required',
|
||||
// place_of_birth: 'required',
|
||||
// gross_annual_income: 'required',
|
||||
// occupation: 'required',
|
||||
true_copy_of_partnership_deed: 'required',
|
||||
registration_certificate: 'required',
|
||||
pan_card: 'required',
|
||||
|
||||
Reference in New Issue
Block a user