@extends('layouts.master') @section('content')
{{$title1}}
@if($all_roles) @foreach($all_roles as $row) @endforeach @endif
# Role Name Display Name Action
{{ $i++ }} {{ $row->name }} {{ $row->display_name }} @if(\Auth::user()->utype==1) @endif
{{$title2}}
{{ csrf_field() }}
{{ $errors->first('name') }}
{{ $errors->first('display_name') }}

@foreach($all_permissions as $info)
@endforeach {{ $errors->first('permission') }}
@stop @section('style') @stop @section('script') @if(Session::has('msg'))
×   {{Session::get('msg')}}
@endif @stop