<div class="mb-3"> <label for="employee_id" class="form-label">Employee Name</label> <input type="text" class="form-control" id="employee_id" placeholder="Enter employee name" name="employee_id" value="{{ old('end_date', $leave->employee_id ?? '') }}" required> </div> <div class="mb-3"> <label for="start_date" class="form-label">Start Leave Date</label> <input type="date" class="form-control" id="start_date" name="start_date" value="{{ old('start_date', $leave->start_date ?? '') }}"> </div> <div class="mb-3"> <label for="end_date" class="form-label">End Leave Date</label> <input type="date" class="form-control" id="end_date" name="end_date" value="{{ old('end_date', $leave->end_date ?? '') }}"> </div> <div class="text-end"> <button type="submit" class="btn btn-primary">{{ isset($leave) ? 'Update' : 'Add Leave' }}</button> </div> @push('js') <script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script> @endpush