@extends('layouts.backend') @section('content')
@include('admin.sidebar')
Role
{!! Form::open([ 'method' => 'DELETE', 'url' => ['/admin/roles', $role->id], 'style' => 'display:inline' ]) !!} {!! Form::button(' Delete', array( 'type' => 'submit', 'class' => 'btn btn-danger btn-sm', 'title' => 'Delete Role', 'onclick'=>'return confirm("Confirm delete?")' ))!!} {!! Form::close() !!}

ID. NameLabel
{{ $role->id }} {{ $role->name }} {{ $role->label }}
@endsection