New-OMIS/Modules/Leave/resources/views/partials/action.blade.php

24 lines
1.1 KiB
PHP
Raw Normal View History

2024-04-04 10:35:27 +00:00
<div class="mb-3">
<label for="employeeName" class="form-label">Employee Name</label>
2024-04-04 12:08:23 +00:00
<input type="text" class="form-control" id="employeeName" placeholder="Enter emploree name" name="employeeName">
2024-04-04 10:35:27 +00:00
</div>
<div class="mb-3">
<label for="employeeUrl" class="form-label">Employee Department URL</label>
2024-04-04 12:08:23 +00:00
<input type="url" class="form-control" id="employeeUrl" placeholder="Enter emploree url" name="employeeUrl">
2024-04-04 10:35:27 +00:00
</div>
<div class="mb-3">
<label for="StartleaveDate" class="form-label">Start Leave Date</label>
2024-04-04 12:08:23 +00:00
<input type="date" class="form-control" id="StartleaveDate" name="start_date">
2024-04-04 10:35:27 +00:00
</div>
<div class="mb-3">
<label for="EndleaveDate" class="form-label">End Leave Date</label>
2024-04-04 12:08:23 +00:00
<input type="date" class="form-control" id="EndleaveDate" name="end_date">
2024-04-04 10:35:27 +00:00
</div>
<div class="mb-3">
<label for="VertimeassageInput" class="form-label">Message</label>
2024-04-04 12:08:23 +00:00
<textarea class="form-control" id="VertimeassageInput" rows="3" placeholder="Enter your message" name="remark"></textarea>
2024-04-04 10:35:27 +00:00
</div>
<div class="text-end">
<button type="submit" class="btn btn-primary">Add Leave</button>
</div>