Files
freeu-project/resources/views/Admin/Pages/manage_setting/general_setting.blade.php

123 lines
7.7 KiB
PHP
Raw Normal View History

@extends('Admin.layouts.master')
@section('content')
<!--begin::Main-->
<div class="app-main flex-column flex-row-fluid" id="kt_app_main">
<!--begin::Content wrapper-->
<div class="d-flex flex-column flex-column-fluid">
<div id="kt_app_content_container" class="app-container container-xxl">
<div class="row max-w-100 index_table mt-10">
<div class="add_new_investors my-5 mb-0">
<p class="fs-2 fw-bold">General settings</p>
<!--begin::Card-->
<div class="card mb-8 mt-8">
<div class="card-header align-items-center">
<div class="left">
<p class='fs-4 fw-bold mb-0'>General setting</p>
<span class='text-muted fs-6 fst-italic'>Here is your basic store setting of your app.</span>
</div>
</div>
<!--begin::Card body-->
<div class="card-body py-5">
<div class="card_general_details row">
<div class="company_name row my-4">
<div class="col-md-6">
<p class='fs-5 fw-bold mb-0'>Company Name</p>
<span class='text-muted fs-6 fst-italic'>Specify the name of your Company.</span>
</div>
<div class="col-md-6">
<input type="text" class="form-control form-control-solid" name="name" placeholder="Company Name" />
</div>
</div>
<div class="company_email row my-4">
<div class="col-md-6">
<p class='fs-5 fw-bold mb-0'>Company Email</p>
<span class='text-muted fs-6 fst-italic'>Specify the email address of your Company.</span>
</div>
<div class="col-md-6">
<input type="text" class="form-control form-control-solid" name="name" placeholder="info@softnio.com" />
</div>
</div>
<div class="company_copyright row my-4">
<div class="col-md-6">
<p class='fs-5 fw-bold mb-0'>Company Copyright</p>
<span class='text-muted fs-6 fst-italic'>Copyright information of your Company.</span>
</div>
<div class="col-md-6">
<input type="text" class="form-control form-control-solid" name="name" placeholder="© 2022, DashLite. All Rights Reserved." />
</div>
</div>
<div class="allow_registration row my-4">
<div class="col-md-6">
<p class='fs-5 fw-bold mb-0'>Allow Registration</p>
<span class='text-muted fs-6 fst-italic'>Enable or disable registration from site.</span>
</div>
<div class="col-md-6 d-flex">
<div class="form-check form-check-custom form-check-solid me-4">
<input class="form-check-input h-20px w-20px" type="radio" value="" name="permission" id="flexCheckboxSm" />
<label class="form-check-label" for="flexCheckboxSm">
Enable
</label>
</div>
<div class="form-check form-check-custom form-check-solid me-4">
<input class="form-check-input h-20px w-20px" type="radio" value="" name="permission" id="flexCheckboxSm1" />
<label class="form-check-label" for="flexCheckboxSm1">
Disable
</label>
</div>
<div class="form-check form-check-custom form-check-solid me-4">
<input class="form-check-input h-20px w-20px" type="radio" value="" name="permission" id="flexRadioLg" />
<label class="form-check-label" for="flexRadioLg">
On Request
</label>
</div>
</div>
</div>
<div class="main_website row my-4">
<div class="col-md-6">
<p class='fs-5 fw-bold mb-0'>Main Website</p>
<span class='text-muted fs-6 fst-italic'>Specify the URL if your main website is external.</span>
</div>
<div class="col-md-6">
<input type="text" class="form-control form-control-solid" name="name" placeholder="© 2022, DashLite. All Rights Reserved." />
</div>
</div>
<div class="website_desc row my-4">
<div class="col-md-6">
<p class='fs-5 fw-bold mb-0'>Website description</p>
<span class='text-muted fs-6 fst-italic'>Describe your website.</span>
</div>
<div class="col-md-6">
<textarea class="form-control form-control-solid resize-none h-100px" placeholder="" >
</textarea>
</div>
</div>
<div class="maintenance row my-4">
<div class="col-md-6">
<p class='fs-5 fw-bold mb-0'>Maintenance Mode</p>
<span class='text-muted fs-6 fst-italic'>Enable to make website make offline.</span>
</div>
<div class="col-md-6">
<div class="form-check form-switch mb-10">
<input class="form-check-input me-5" type="checkbox" role="switch" id="flexSwitchCheckDefault">
<label class="form-check-label" for="flexSwitchCheckDefault">Offline</label>
</div>
</div>
</div>
</div>
<div class="submit_btn d-flex justify-content-start my-15">
<a href="#" class="btn btn-dark">Update</a>
</div>
</div>
<!--end::Card body-->
</div>
<!--end::Card-->
</div>
</div>
</div>
</div>
<!--end::Content wrapper-->
</div>
<!--end:::Main-->
@endsection