@extends('admin.layout') @section('content')
@if($roles) @foreach($roles as $role) @endforeach
Role Actions Delete
{{$role->name}} {{ Form::open(['method' => 'DELETE', 'action'=>['RolesController@destroy', $role->id]]) }} {{ Form::hidden('id', $role->id) }} {{ Form::submit('delete', ['class' => 'mt-1 btn btn-primary']) }} {{ Form::close() }}
@endif
@endsection