@extends('layouts.admin') @section('title') Create Role @endsection @section('content')

Create Role

@csrf
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@foreach($permissions as $key =>$value)    {{$value->title}}
@endforeach @if ($errors->has('permission')) {{ $errors->first('permission') }} @endif
@endsection