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

cloud Extranet/Partage de documents

{!! Form::model($categorie, array("class" => "form-horizontal", "files" => true)) !!}
@if($categorie != 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")) !!}

Catégorie du module dépôt / partage de documents

Éditer une catégorie

{!! Form::text('libelle', old('libelle'), array("class" => "form-control", "placeholder" => "Nom de la catégorie", "required")) !!}
{!! Form::select('parent_id', $parents, old('parent_id')) !!}
@foreach($profils as $profil) {!! Form::checkbox('profils[]', $profil->id, $categorie ? isProfil($profil->id, $categorie->profils) : false, array("id" => "profil-" . $profil->id, "class" => "filled-in chk-col-teal")) !!} @endforeach
{!! Form::text('rang', old('rang'), array("class" => "form-control")) !!}
{!! Form::hidden('id') !!} {!! Form::close() !!} @stop @section('js') @parent {!! Html::script("adminbsb_plugins/bootstrap-select/js/bootstrap-select.min.js") !!} @stop