@extends('desktop.layouts.app') @section('content')

{{ $board->name }} 글쓰기


@if($boardMeta->write_header_content)
{!! $boardMeta->write_header_content !!}
@endif {{-- 게시글 작성 --}}
@csrf {{-- 추가기능 --}} @if((IS_ADMIN || !$boardMeta->use_personal)) @endif {{-- 분류 --}} @if($boardMeta->use_category && $category) @endif {{-- 익명 게시판 --}} @guest @endguest {{-- 제목 --}} {{-- 내용 --}} {{-- Tags --}} @if($boardMeta->use_post_tag) @endif {{-- Links --}} @for ($i = 1; $i <= ($boardMeta->link_num ?? 0); $i++) @endfor {{-- Files --}} @if($boardMeta->use_upload_file) @for ($i = 1; $i <= ($boardMeta->upload_file_num ?? 0); $i++) @endfor @endif {{-- Captcha --}} @if($boardMeta->use_post_captcha) @endif
@admin @if(!$boardMeta->use_personal) {{-- 1:1 게시판 전체공지는 제외 --}}
@endif
@endadmin @if($boardMeta->use_post_secret == '1')
use_post_secret_selected) == '1') checked @endif />
@endif
{!! htmlEditor('content', old('content'), 'form-control dhtml-editor', $boardMeta->use_post_dhtml, false, $boardMeta->post_default_content, 8, 'content'); !!}
upload_only_img_file) accept="image/gif, image/jpeg, image/png" @elseif($boardMeta->upload_file_extension) accept="{{ $boardMeta->upload_file_extension }}" @endif /> 0 @if($boardMeta->upload_file_max_size) / {{ $boardMeta->upload_file_max_size ?? 0 }}MB @endif
{!! captcha_image_html('PostWriteCaptcha') !!}

이용약관게시판 규칙에 위배되는 경우, 이용에 제한을 받을 수 있습니다.
취소
@endsection @push('styles') @if($boardMeta->use_post_captcha) @endif @endpush @push('scripts') @endpush