@extends('layouts.dashboard') @section('content') .row .col-md-8.offset-2 .box .box-header.dark %h2 Producto nuevo {!! Form::open(['route'=> 'product.store','method'=>'POST']) !!} .box-body @include('dashboard.products.fields') {!! Form::submit('Agregar producto', ['class'=>'btn dark']) !!} {!! Form::close() !!} @endsection @section('script_extras') %script{:src => "https://cdn.ckeditor.com/4.8.0/standard/ckeditor.js"} :javascript CKEDITOR.replace('specifications'); CKEDITOR.replace('aspects'); @endsection