{{ __('Role') }}

{{ __('Create New Role') }}

@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::open(array('route' => 'roles.store','method'=>'POST')) !!}
{{ __('Name') }}: {!! Form::text('name', null, array('placeholder' => 'Name','class' => 'rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 block mt-1 w-full')) !!}
{{ __('Permission')}} :
@foreach($permission as $value)
@endforeach
{!! Form::close() !!}