@extends('dashboard::master') {{-- Autor: Giovanni López O. @gmlo_89 --}} @section('head') @stop @section('content')

{{ $title }}

{{ Alert::render() }}
{{ trans('dashboard::label.go_back') }}
{{ Form::model($category, $formOptions) }}
{{ trans('categories::label.module_name') }}
{{ Form::text('title', null, array( "class" => "form-control required", "id" => "inputTitle", "placeholder" => trans('categories::label.title') )) }}
@if(!empty($category->image))
{{ trans('categories::label.show_image') }}
@endif {{ Form::file('image') }}
{{ Form::select('category_parent', $categories, null, array( "class" => "form-control", "id" => "inputCategoryParent" )) }}
@if($category->exists)
@endif
@stop @section('scripts') {{ JavaScript::makeVar('msg_confirm_delete', trans('categories::message.confirm_delete_category')) }} @stop