35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
|
@extends('layouts.admin')
|
||
|
|
||
|
@section('title', trans('general.title.edit', ['type' => trans_choice('general.roles', 1)]))
|
||
|
|
||
|
@section('content')
|
||
|
<!-- Default box -->
|
||
|
<div class="box box-success">
|
||
|
{!! Form::model($role, [
|
||
|
'method' => 'PATCH',
|
||
|
'url' => ['auth/roles', $role->id],
|
||
|
'role' => 'form'
|
||
|
]) !!}
|
||
|
|
||
|
<div class="box-body">
|
||
|
{{ Form::textGroup('display_name', trans('general.name'), 'id-card-o') }}
|
||
|
|
||
|
{{ Form::textGroup('name', trans('general.code'), 'code') }}
|
||
|
|
||
|
{{ Form::textareaGroup('description', trans('general.description')) }}
|
||
|
|
||
|
{{ Form::checkboxGroup('permissions', trans_choice('general.permissions', 2), $permissions, 'display_name') }}
|
||
|
</div>
|
||
|
<!-- /.box-body -->
|
||
|
|
||
|
@permission('update-auth-roles')
|
||
|
<div class="box-footer">
|
||
|
{{ Form::saveButtons('auth/roles') }}
|
||
|
</div>
|
||
|
<!-- /.box-footer -->
|
||
|
@endpermission
|
||
|
|
||
|
{!! Form::close() !!}
|
||
|
</div>
|
||
|
@endsection
|