@extends('layouts.app') @section('title') Roles @endsection @section('content')
Roles
@foreach ($roles as $index => $role) @endforeach
# Role Name
{{ ++$index }} {{ $role->name }}
Create Role
@if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if ($message = Session::get('success'))

{{ $message }}

@endif
@csrf
@endsection