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

cloud Extranet/Partage de documents

{!! Form::model($profil, array("class" => "form-horizontal")) !!}
@if(count(getAllLangues()) > 1) @endif
@if($profil != 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\Depot\Controller\DepotController@admin') . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!}

Paramètres du profil

{!! Form::text('nom', old('nom'), array("class" => "form-control", "placeholder" => "Nom du profil", "required")) !!}
@if(count(getAllLangues()) > 1) @foreach (getAllLangues() as $langue) @if($langue->suffixe != "fre")
@if($profil != 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\Depot\Controller\DepotController@admin') . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!}

Paramètres du profil

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