@extends('page') @section('content')

Create New Permissions

@if ($message = Session::get('success'))
{{ $message }}
@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

@endif

Create Permission

{!! Form::open(array('route' => 'permissions.store','method'=>'POST')) !!}
Name:* {!! Form::text('name', null, array('placeholder' => 'Name','class' => 'form-control')) !!}
{!! Form::close() !!}

Guidelines

Guidelines comes here.
@endsection