@extends('layouts.app') @section('breadcrumb')

@lang('Create New Role')

@endsection @section('content') @if (count($errors) > 0)
@lang('Whoops!') @lang('There were some problems with your input.')

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