@extends('layouts.app') @section('extrastyles') @endsection @section('content')
{!! Form::open(['novalidate' => 'novalidate', 'onsubmit' => 'return savePage(this);']) !!}
{{$page->title}}
@include('flash::message')
{!! Form::label('title','Name') !!} {!! Form::text('title' , $page->title , ['class' => 'form-control','placeholder' => 'Title','required'=>'true']) !!}
{!! RTEForm::rte('content', $page->content) !!}
{!! Form::textarea('short_description' , $page->short_description , ['class' => 'form-control','placeholder' => 'Short Description']) !!}
{!! Form::label('author','Author') !!} {!! Form::text('author' , customPageFieldFind($page->id,'author','') , ['class' => 'form-control','placeholder' => 'Title','required'=>'true']) !!}
{!! Form::label('status','Status') !!}
{!! Form::label('published_date','Publish Date:') !!}
{!! Form::label('regions', 'Available in Regions') !!} {!! Form::select('region_id[]', $regions, json_decode($page->regions, true), ['class' => 'form-control page_region_select input-sm', 'multiple', 'style' => 'width:100%;']) !!}

Categories

@include('Website::blog-post._category')

Feature Image

Set Feature Image
{!! Form::close() !!} @include('Website::blog-post.product_popup') @include('Website::layout._gallery_popup') @endsection @section('footer') @endsection