@extends('layouts.app') @push('title') اضافة صلاحية جديدة @endpush @push('pg_btn') جميع الصلاحيات @endpush @section('content')
{!! Form::open(['route' => 'permissions.store']) !!}
معلومات الصاحيات
{{ Form::label('name', 'Name', ['class' => 'form-control-label']) }} {{ Form::text('name', null, ['class' => 'form-control']) }} يمكنك إضافة العديد من الصلاحيات باستخدام الفاصلة. على سبيل المثال add-user, edit-user, update-user
{{ Form::submit('Submit', ['class'=> 'mt-3 btn btn-primary']) }}
{!! Form::close() !!}
@endsection