@extends('layouts.master') @section('title')Create Role @endsection @section('content') {{-- breadcrumbs --}} @section('breadcrumb') @component('components.breadcrumb') @slot('li_1') Role @endslot @slot('title') Role Create @endslot @endcomponent @endsection @if ($message = Session::get('success'))

{{ $message }}

@endif {!! Form::open(array('route' => 'store-roles','method'=>'POST')) !!} @csrf
Name: {!! Form::text('name', null, array('placeholder' => 'Name','class' => 'form-control')) !!}
Permission:
@foreach($permission as $value)
@endforeach
{!! Form::close() !!} @endsection @section('script') @endsection