@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} | Edit @endsection @section('content')

Role Management

Edit Role

@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' => ['roles.update', $role->id]]) !!}
Name: {!! Form::text('name', null, ['placeholder' => 'Name', 'class' => 'form-control']) !!}
Permission:
@foreach ($permission as $value)
@endforeach
{!! Form::close() !!}
@endsection