@extends('layouts.admin') @section('content')

cloud Extranet/Partage de documents

{!! Form::model($module, array("class" => "form-horizontal")) !!}
@if(count(getAllLangues()) > 1) @endif
{!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('\Plugins\Depot\Controller\DepotController@admin') . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!}

Paramètres du module Dépôt / Partage de documents

{!! Form::text('title', old('title'), array("class" => "form-control", "placeholder" => "Title", "maxlength" => 80, "required")) !!}
{!! Form::text('menu', old('menu'), array("class" => "form-control", "placeholder" => "Titre dans le menu", "required")) !!}
{!! Form::text('titre_depot', getParametre('titre_depot'), array("class" => "form-control", "placeholder" => "H1", "required")) !!}

Référencement du module Dépôt / Partage de documents

{!! Form::textarea('description', old('description'), array("rows" => 2, "maxlength" => 170, "class" => "form-control", "placeholder" => "META Description")) !!}

3 mots maximum séparés par un espace, sans accents, ni ponctuation
{!! Form::text('rewrite', old('rewrite'), array ("rows" => 2, "class" => "form-control", "placeholder" => "Rewrite de la page")) !!}
{!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('\Plugins\Depot\Controller\DepotController@admin') . "'", "class" => "btn btn-sm bg-orange waves-effect m-t-15")) !!}
@if(count(getAllLangues()) > 1) @foreach (getAllLangues() as $langue) @if($langue->suffixe != "fre")
{!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('\Plugins\Depot\Controller\DepotController@admin') . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!}

Paramètres du module Dépôt / Partage de documents

{!! Form::text($langue->suffixe . '_title_ml', getTranslation("Module", "title", $module ? $module->id : null, $module ? $module->title : null, $langue->suffixe), array("class" => "form-control", "placeholder" => "Title", 'maxlength' => 80)) !!}
{!! Form::text($langue->suffixe . '_menu_ml', getTranslation("Module", "menu", $module ? $module->id : null, $module ? $module->menu : null, $langue->suffixe), array("class" => "form-control", "placeholder" => "Titre dans le menu")) !!}
{!! Form::text($langue->suffixe.'_titre_depot_ml', getParametreLangue($langue->suffixe, 'titre_depot'), array("class" => "form-control", "placeholder" => "H1")) !!}

Référencement du module Dépôt / Partage de documents

{!! Form::textarea($langue->suffixe . '_description_ml', getTranslation("Module", "description", $module ? $module->id : null, $module ? $module->description : null, $langue->suffixe), array("rows" => 2, "maxlength" => 170, "class" => "form-control", "placeholder" => "META Description")) !!}
3 mots maximum séparés par un espace, sans accents, ni ponctuation
{!! Form::textarea($langue->suffixe . '_rewrite_ml', getTranslation("Module", "rewrite", $module ? $module->id : null, $module ? $module->rewrite : null, $langue->suffixe), array ("rows" => 2, "class" => "form-control", "placeholder" => "Rewrite de la page")) !!}
@endif @endforeach @endif

Paramètres du module

{!! Form::hidden('id') !!} {!! Form::close() !!} @stop