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

camera Galerie photos

{!! Form::model($tag, array("class" => "form-horizontal")) !!}
@if(count(getAllLangues()) > 1) @endif
@if($tag != null) {!! Form::submit("Enregistrer et rester sur la page", array("class" => "btn btn-sm bg-teal waves-effect m-l-15 pull-right", "name" => "saveAndkeep")) !!} @endif {!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('\Plugins\Galerie\Controller\GalerieController@admin') . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!}

Tag de galerie

Éditer un tag

{!! Form::text('nom', old('nom'), array("class" => "form-control", "placeholder" => "Nom du tag", "required")) !!}
@if(count(getAllLangues()) > 1) @foreach (getAllLangues() as $langue) @if($langue->suffixe != "fre")
@if($tag != null) {!! Form::submit("Enregistrer et rester sur la page", array("class" => "btn btn-sm bg-teal waves-effect m-l-15 pull-right", "name" => "saveAndkeep")) !!} @endif {!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('\Plugins\Galerie\Controller\GalerieController@admin') . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!}

Tag de galerie

Éditer un tag

{!! Form::text($langue->suffixe . '_libelle', getTranslation("Tag", "nom", $tag ? $tag->id : null, $tag ? $tag->nom : null, $langue->suffixe), array("class" => "form-control", "placeholder" => "Nom du tag")) !!}
@endif @endforeach @endif
{!! Form::hidden('id') !!} {!! Form::close() !!}
@stop