@if($customFields)
{!! trans('lang.main_fields') !!}
@endif
{!! Form::label('title', trans("lang.custom_page_title"), ['class' => 'col-md-3 control-label mx-1']) !!}
{!! Form::text('title', null, ['class' => 'form-control','placeholder'=> trans("lang.custom_page_title_placeholder")]) !!}
{{ trans("lang.custom_page_title_help") }}
{!! Form::label('content', trans("lang.custom_page_content"), ['class' => 'col-md-3 control-label mx-1']) !!}
{!! Form::textarea('content', null, ['class' => 'form-control','placeholder'=> trans("lang.custom_page_content_placeholder") ]) !!}
{{ trans("lang.custom_page_content_help") }}
@if($customFields)
{!! trans('lang.custom_field_plural') !!}
{!! $customFields !!}
@endif
{!! Form::label('published', trans("lang.custom_page_published"),['class' => 'control-label my-0 mx-3']) !!} {!! Form::hidden('published', 0, ['id'=>"hidden_published"]) !!} {!! Form::checkbox('published', 1, null) !!}
{{trans('lang.cancel')}}