@extends('backend.layouts_backend.master') @section('title') Add Permission @endsection @section('content')
{!! Form::open(['route' => 'permissions.store', 'method' => 'POST']) !!}
Name: {!! Form::text('name', null, ['placeholder' => 'Name', 'class' => 'form-control']) !!}
{{-- validation --}} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
Description: {!! Form::text('description', null, ['placeholder' => 'Description', 'class' => 'form-control']) !!}
{{-- validation --}} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! Form::close() !!}
@endsection