@extends('backend.layouts_backend.master2') @section('title') Add Permission @endsection @section('content') {{-- header --}}

Add Permission


{{-- end header --}}
{!! Form::open(['route' => 'permissions.store', 'method' => 'POST']) !!}
{!! Form::text('name', null, ['placeholder' => '', 'class' => 'form-control']) !!}

{{-- validation --}} @if ($errors->has('name')) {{-- {{ $errors->first('name') }} --}} @endif
{{-- {!! Form::text('description', null, ['placeholder' => '', 'class' => 'form-control']) !!} --}}
{{-- validation --}} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{{-- --}} {!! Form::close() !!}
@endsection