@extends('layouts.admin') @section('title') @lang('Edit Role') @endsection @section('breadcrumb')

@lang('Edit Role')

@lang('Back')
@endsection @section('content')
@csrf @method('PUT')
@php $data = json_decode($role->section, true); if (!$data) { $data = []; } @endphp
@endsection