@extends('backend.layouts.app') @section('page-title', trans('app.roles')) @section('page-heading', $edit ? $role->name : trans('app.create_new_role')) @section('breadcrumbs') @stop @section('content') @include('backend.partials.messages') @if ($edit) {!! Form::open(['route' => ['backend.role.update', $role->id], 'method' => 'PUT', 'id' => 'role-form']) !!} @else {!! Form::open(['route' => 'backend.role.store', 'id' => 'role-form']) !!} @endif
@lang('app.role_details_big')

A general role information.

@stop @section('scripts') @stop