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

{{ $title }}

{{ Alert::render() }}
{{ trans('dashboard::label.go_back') }}
{{ Form::open($formOptions) }}
{{ trans('configurations::label.module_description') }}
{{ Form::text('title', null, array( "class" => "form-control required", "id" => "inputTitle", "placeholder" => trans('configurations::label.site_title') )) }}
{{ Form::select('default_language', $languages, null, array( "class" => "form-control", "id" => "inputLanguage" )) }}
{{ Form::textarea('meta_description', null, array( "class" => "form-control ", "id" => "inputMetaDescription", "rows" => 3 )) }}
{{ Form::textarea('meta_keywords', null, array( "class" => "form-control ", "id" => "inputMetaKeywords", "rows" => 3 )) }}
{{ Form::checkbox( 'disable_site', 1, null, array( 'data-toggle' => 'checkbox', 'data-on-text' => trans('dashboard::label.yes'), 'data-off-text' => trans('dashboard::label.no'), 'data-size' => 'normal', 'data-on-color' => 'danger', 'data-off-color' => 'success' )); }}
{{ Form::textarea('offline_site_message', null, array( "class" => "form-control editor-html", "id" => "inputOfflineSiteMessage" )) }}
{{ Form::textarea('error_page', null, array( "class" => "form-control editor-html", "id" => "inputErrorPage" )) }}
@stop @section('scripts') @stop