Files
2026-07-01 16:44:17 +03:00

43 lines
1.4 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="card mt-3">
<div class="card-header bg-primary">
<h5 class="card-title text-white">Duyuru Ekle</h5>
</div>
<div class="card-body ">
<form action="#" method="post">
<div class="mb-3">
<label class="form-label">Başlık</label>
<input type="text" name="title" class="form-control" required>
</div>
<div class="mb-3">
<label class="form-label">Duyuru :</label>
<textarea name="duyuru" id="editor" rows="20" class="span11"></textarea>
<script>
CKEDITOR.replace('editor', {
height: 1000,
filebrowserBrowseUrl : '/filemanager/dialog.php?type=2&editor=ckeditor&fldr=',
filebrowserUploadUrl : '/filemanager/dialog.php?type=2&editor=ckeditor&fldr=',
filebrowserImageBrowseUrl : '/filemanager/dialog.php?type=1&editor=ckeditor&fldr='
});
</script>
</div>
<div class="mb-3">
<label class="form-label">Dil :</label>
<select name="lang" id="" class="form-control" required>
<option value="">Dili Seç</option>
@foreach (languageList() as $key):
<option value="{{$key->slug}}">{{$key->language}}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<button type="submit" class="btn btn-success">Kaydet</button>
</div>
</form>
</div>
</div>