@extends('themes.default1.agent.layout.agent') @extends('themes.default1.agent.layout.sidebar') @section('pages') active @stop @section('all-pages') class="active" @stop @section('content') {!! Form::model($page,['url' => 'page/'.$page->slug, 'method' => 'PATCH','files'=>true]) !!}
{!! Form::label('name',Lang::get('lang.name')) !!} {!! $errors->first('name', ':message') !!} {!! Form::text('name',null,['class' => 'form-control']) !!}
{!! Form::label('slug',Lang::get('lang.slug')) !!} {!! $errors->first('slug', ':message') !!} {!! Form::text('slug',null,['class' => 'form-control']) !!}
{!! Form::label('description',Lang::get('lang.description')) !!} {!! $errors->first('description', ':message') !!}
{!! Form::textarea('description',null,['class' => 'form-control color','size' => '110x15','id'=>'myNicEditor','placeholder'=>'Enter the description']) !!}

{{Lang::get('lang.publish')}}

{!! Form::label('status',Lang::get('lang.status')) !!} {!! $errors->first('status', ':message') !!}
{!! Form::radio('status',1,true) !!}{{Lang::get('lang.published')}}
{!! Form::radio('status',0,null) !!}{{Lang::get('lang.draft')}}
{!! Form::label('visibility',Lang::get('lang.visibility')) !!} {!! $errors->first('visibility', ':message') !!}
{!! Form::radio('visibility','1',true) !!}{{Lang::get('lang.public')}}
{!! Form::radio('visibility','0',null) !!}{{Lang::get('lang.private')}}
@stop