Add Permissions
@lang('app.intro-text')
{!! Form::open([ 'route' => 'permissions.store', 'class' => 'create-permission', 'method' => 'POST', 'role' => 'form', ]) !!}
{!! Form::label('name', 'Permission Name*') !!}
{!! Form::text(
'name',
old('name'),
$errors->has('name')
? ['placeholder' => 'Permission Name', 'class' => 'form-control is-invalid']
: ['placeholder' => 'Permission Name', 'class' => 'form-control'],
) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ Form::button('Submit', ['type' => 'submit', 'class' => 'btn btn-lg btn-success pull-right']) }}