web-mooc/resources/views/admin/knowledge_base/create.blade.php
2025-10-30 10:32:19 +07:00

13 lines
484 B
PHP

<form action="{{ route('admin.knowledge.base.store') }}" method="post">
@csrf
<div class="mb-3">
<label for="title" class="form-label ol-form-label">{{ get_phrase('Title') }}</label>
<input type="text" name="title" class="form-control ol-form-control" id="title" placeholder="{{ get_phrase('Subject') }}" required>
</div>
<div class="fpb-7">
<button type="submit" class="ol-btn-primary">{{ get_phrase('Submit') }}</button>
</div>
</form>