You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
800 B
17 lines
800 B
<!-- Title of Post Form Input -->
|
|
<div class="form-group @if ($errors->has('title')) has-error @endif">
|
|
{!! Form::label('title', 'Title') !!}
|
|
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Title of Post']) !!}
|
|
@if ($errors->has('title')) <p class="help-block">{{ $errors->first('title') }}</p> @endif
|
|
</div>
|
|
|
|
<!-- Text body Form Input -->
|
|
<div class="form-group @if ($errors->has('body')) has-error @endif">
|
|
{!! Form::label('body', 'Body') !!}
|
|
{!! Form::textarea('body', null, ['class' => 'form-control ckeditor', 'placeholder' => 'Body of Post...']) !!}
|
|
@if ($errors->has('body')) <p class="help-block">{{ $errors->first('body') }}</p> @endif
|
|
</div>
|
|
|
|
@push('scripts')
|
|
<script src="//cdn.ckeditor.com/4.6.2/standard/ckeditor.js"></script>
|
|
@endpush |