@extends('layouts.dashboard') @section('content') .row .col-md-12 .box .box-header.dark %h2 Actualizar información .box-body {!! Form::open(['route'=> 'blog.admin.entry.store','method'=>'POST', 'enctype'=>'multipart/form-data', "id"=>"target"]) !!} @include('blog::entry.fields') .dker.p-a.text-right .col-md-12 %a.btn.danger{:href=>"{{route('blog.admin.entry.index')}}", :style=>"margin-right:10px"} Cancelar %button.btn.dark{:type => "submit"} Registrar {!! Form::close() !!} @endsection @section('script_extras') %script{:src => "https://cdn.ckeditor.com/4.8.0/standard/ckeditor.js"} :javascript CKEDITOR.replace('body'); $('#tags').select2(); $("#publication_date").datepicker({ dateFormat: "yy-mm-dd" }); @endsection