|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/peoplebee.in/webmaster.peoplebee.in/resources/views/employee_epf/ |
Upload File : |
@extends('layout')
@section('content')
<!-- begin::main content -->
<style>
/* Styles for tabs */
.tab {
display: inline-block;
padding: 12px 26px;
cursor: pointer;
background-color: #E6EAED;
margin-right: -4px; /* Remove spacing between tabs */
}
/* Style for highlighted tab */
.tab.active {
background-color: white;
}
/* Content area style */
.tab-content {
padding: 20px;
border-radius: 0 0 5px 5px;
display: none; /* Hide all content areas by default */
}
/* Show active content area */
.tab-content.active {
display: block;
}
.form-group {
margin-bottom: 1rem;
margin-bottom: 30px !important;
}
.form-group input, .form-group select{
height:42px;
padding-top:10px 25px !important;
}
.form-group label, .tab{
font-size:13px !important;
}
.company-save-btn{
position:fixed;
bottom:0;left:250px;
background-color:white;
border-top:1px solid #ccc;
}
.inner-border{
border:-2px solid #ddd !important;
}
@media only screen and (max-width: 768px) {
.company-save-btn{
position:fixed;
bottom:0;left:0px;
background-color:white;
border-top:1px solid #ccc;
}
}
</style>
<main class="main-content px-0">
<div class="container">
<!-- begin::page header -->
<div class="page-header m-0 border-0">
<h3> {{__('message.add')}} Employee Epf Rule </h3>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{{ asset('dashboard') }}">{{__('message.dashboard')}}</a></li>
<li class="breadcrumb-item" aria-current="page"><a href="{{ asset('employee-epf') }}">Employee EPF</a></li>
<li class="breadcrumb-item active" aria-current="page">{{__('message.add')}}</li>
</ol>
</nav>
</div>
<!-- end::page header -->
<div class="row ">
<div class="col-md-6">
<x-flashMessage />
<div class="card border-0">
<div class="card-body py-0 border py-4">
<form action="{{asset('add-employee-epf')}}" method="post">
@csrf
<div class="form-group">
<label for="admin_id">Select Admin (Leave blank for default rule)</label>
<select class="form-control" name="admin_id" id="admin_id">
<option value="0">Global Rule (All Admins)</option>
@foreach($admins as $admin)
<option value="{{ $admin->id }}">{{ $admin->name }}</option>
@endforeach
</select>
</div>
<div class="form-group">
<label>Employee EPF Rate (%)</label>
<input type="number" class="form-control" name="employee_epf_rate" id="employee_epf_rate" value="12" step="0.01">
</div>
<div class="form-group">
<label>Employer EPF Rate (%)</label>
<input type="number" class="form-control" name="employer_epf_rate" id="employer_epf_rate" value="3.67" step="0.01">
</div>
<div class="form-group">
<label>Employer EPS Rate (%)</label>
<input type="number" class="form-control" name="employer_eps_rate" id="employer_eps_rate" value="8.33" step="0.01">
</div>
<div class="form-group">
<label>EDLI(Employee Deposit Linked Insurance) Rate (%)</label>
<input type="number" class="form-control" name="edli_rate" id="edli_rate" value="0.5" step="0.01">
</div>
<div class="form-group">
<label>Admin Charges Rate (%)</label>
<input type="number" class="form-control" name="admin_charges_rate" id="admin_charges_rate" value="0.5" step="0.01">
</div>
<button type="submit" class="btn btn-primary">Save EPF Rules</button>
</form>
</div>
</div>
</div>
<div class="col-md-6"></div>
</div>
</div>
</main>
<!-- end::main content -->
@endsection
@push('footer-script')
<!-- begin::select2 -->
<link rel="stylesheet" href="{{ asset('public/admin/vendors/select2/css/select2.min.css') }}" type="text/css">
<script src="{{ asset('public/admin/vendors/select2/js/select2.min.js') }}"></script>
<!-- end::select2 -->
<script>
$(document).ready(function() {
$('#js-example-basic-roles').select2({});
});
</script>
@endpush