@extends('layouts.admin') @section('page-title','') @section('breadcrumb') @include('admin.partials.crumb',[ 'crumbs'=>[ route('admin.dashboard')=>__('default.dashboard'), '#'=>isset($pageTitle)?$pageTitle:'' ]]) @endsection @section('content')
@php $form->prepare(); $form->setAttribute('action', adminUrl(array('controller'=>'news','action'=>$action,'id'=>$id))); $form->setAttribute('method', 'post'); $form->setAttribute('role', 'form'); $form->setAttribute('class', 'form-horizontal'); echo $this->form()->openTag($form); @endphp
{{ formLabel($form->get('title')) }} {{ formElement($form->get('title')) }}

{{ formElementErrors($form->get('title')) }}

{{ formLabel($form->get('content')) }} {{ formElement($form->get('content')) }}

{{ formElementErrors($form->get('content')) }}



{{ formElement($form->get('picture')) }} {{__lang('browse')}}  |  {{ __lang('clear') }}
{{ __lang('recommended') }}: 1170px X 711px
@php $this->headScript()->prependFile(basePath() . 'client/vendor/ckeditor/ckeditor.js') @endphp @endsection