@extends('layouts.app') @section('title') {{__('messages.role.edit_role')}} @endsection @section('header_toolbar')

@yield('title')

@endsection @section('content')
@include('layouts.errors')
{!! Form::open(['route' => ['roles.update', $role->id], 'method' => 'put']) !!} @include('roles.fields') {{ Form::close() }}
@endsection