@extends('layouts.superadmin') @section('content')

{{ __('Edit Permission') }}

@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::model($role, ['method' => 'PATCH','route' => ['permissions.update', $role->id]]) !!}
{{ __('Name') }}: {!! Form::text('name', null, array('placeholder' => 'Name','class' => 'form-control')) !!}
{!! Form::close() !!}
@endsection