|
|
|
@ -1,27 +1,30 @@
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="employeeName" class="form-label">Employee Name</label>
|
|
|
|
|
<input type="text" class="form-control" id="employeeName" placeholder="Enter emploree name" name="employeeName"
|
|
|
|
|
required>
|
|
|
|
|
<div class="invalid-feedback">
|
|
|
|
|
Please enter Employee Name.
|
|
|
|
|
<label for="employeeName" class="form-label">Employee Name</label>
|
|
|
|
|
<input type="text" class="form-control" id="employeeName" placeholder="Enter employee name" name="employeeName" required>
|
|
|
|
|
<div class="invalid-feedback">
|
|
|
|
|
Please enter employee name.
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="employeeUrl" class="form-label">Employee Department URL</label>
|
|
|
|
|
<input type="url" class="form-control" id="employeeUrl" placeholder="Enter emploree url" name="employeeUrl">
|
|
|
|
|
<label for="employeeUrl" class="form-label">Employee Department URL</label>
|
|
|
|
|
<input type="url" class="form-control" id="employeeUrl" placeholder="Enter emploree url" name="employeeUrl">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="StartleaveDate" class="form-label">Start Leave Date</label>
|
|
|
|
|
<input type="date" class="form-control" id="StartleaveDate" name="start_date">
|
|
|
|
|
<label for="StartleaveDate" class="form-label">Start Leave Date</label>
|
|
|
|
|
<input type="date" class="form-control" id="StartleaveDate" name="start_date">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="EndleaveDate" class="form-label">End Leave Date</label>
|
|
|
|
|
<input type="date" class="form-control" id="EndleaveDate" name="end_date">
|
|
|
|
|
<label for="EndleaveDate" class="form-label">End Leave Date</label>
|
|
|
|
|
<input type="date" class="form-control" id="EndleaveDate" name="end_date">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="VertimeassageInput" class="form-label">Message</label>
|
|
|
|
|
<textarea class="form-control" id="VertimeassageInput" rows="3" placeholder="Enter your message" name="remark"></textarea>
|
|
|
|
|
<label for="VertimeassageInput" class="form-label">Message</label>
|
|
|
|
|
<textarea class="form-control" id="VertimeassageInput" rows="3" placeholder="Enter your message" name="remark"></textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="text-end">
|
|
|
|
|
<button type="submit" class="btn btn-primary">Add Leave</button>
|
|
|
|
|
<button type="submit" class="btn btn-primary">Add Leave</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@push('js')
|
|
|
|
|
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
|
|
|
|
|
@endpush
|
|
|
|
|