@extends('system.base') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (Session::has('msg'))
× Advertencia! {!! Session::has('msg') ? Session::get("msg") : '' !!}.
@endif
{!! csrf_field() !!} @foreach ($modules as $module)

{{$module->name}}


@foreach($module->childsmodule as $child)

{{$child->name}}

@if(count($child->modulepermissions) > 0) @foreach($child->modulepermissions as $permission)
@endforeach @endif
@endforeach
@endforeach
Cancelar
@endsection @section("js") @stop