@extends('panel.layout.master' , ['title' => 'Add/Edit Permissions '])
@section('content_head')
@endsection
@section('content')
@php
$item = isset($item) ? $item: null;
@endphp
{!! Form::open(['method'=>isset($item) ? 'PUT' : 'POST', 'url'=> url()->current() ,'to'=>url()->current() , 'class'=>'form-horizontal','id'=>'form']) !!}
@csrf
@include('panel.roles.permissions')
{!! Form::close() !!}
@endsection
@push('js')
@endpush