@extends('admin.layouts.admin') @section('content')

Role

New Role

New Role
{{ csrf_field() }}
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if($errors->has('display_name'))

{{ $errors->first('display_name') }}

@endif
@if($errors->has('description'))

{{ $errors->first('description') }}

@endif
@foreach($permissions as $key => $permission)
@endforeach
{{ Form::submit('Add New Role', ['class' => 'btn btn-success btn-sm']) }}
@endsection @section('script') @endsection