@extends('layouts.admin') @section('css') @parent {!! Html::style('adminbsb_plugins/bootstrap-select/css/bootstrap-select.min.css') !!} @stop @section('content')

camera Galerie photos

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

Paramètres du module Galerie photos

{!! Form::text('title', old('title'), array("class" => "form-control", "placeholder" => "Title", "maxlength" => 80, "required", "ID" => "idtitle")) !!}
Nombre de charactère :
{!! Form::text('menu', old('menu'), array("class" => "form-control", "placeholder" => "Titre dans le menu", "required")) !!}
{!! Form::text('titre_galerie', getParametre('titre_galerie'), array("class" => "form-control", "placeholder" => "H1", "required")) !!}

Référencement de la Galerie photos

{!! Form::textarea('description', old('description'), array("rows" => 2, "maxlength" => 170, "class" => "form-control", "placeholder" => "META Description", "ID" => "idmeta")) !!}
Nombre de charactère :
3 mots maximum séparés par un espace, sans accents, ni ponctuation
{!! Form::textarea('rewrite', old('rewrite'), array ("rows" => 2, "class" => "form-control", "placeholder" => "Rewrite de la page")) !!}
{!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('\Plugins\Galerie\Controller\GalerieController@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\Galerie\Controller\GalerieController@admin') . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!}

Paramètres du module Galerie photos

{!! 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_galerie_ml', getParametreLangue($langue->suffixe, 'titre_galerie'), array("class" => "form-control", "placeholder" => "H1")) !!}

Référencement de la Galerie photos

{!! 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

Dimensions des photos

{!! Form::text('size_medium_galerie', getParametre('size_medium_galerie'), array("class" => "form-control", "placeholder" => "Taille max des miniatures", "required")) !!}
{!! Form::text('size_big_galerie', getParametre('size_big_galerie'), array("class" => "form-control", "placeholder" => "Taille max des photos", "required")) !!}

Autres paramètres

{!! Form::text('rang', old('rang'), array("class" => "form-control", "readonly" => true, "default" => 0)) !!}
{!! Form::hidden('id') !!} {!! Form::close() !!} @stop