@extends('admin/layouts/default') {{-- Web site Title --}} @section('title') @lang('admin/roles/title.create') @parent @stop {{-- Content --}} @section('content')
@lang('roles/title.create')
@lang('general.dashboard')
@lang('roles/title.roles')
@lang('roles/title.create')
@lang('roles/title.create')
{!! $errors->first('slug', '
Another role with same slug exists, please choose another name
') !!} @if (count($errors) > 0)
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ csrf_field() }}
@lang('roles/form.name')
{!! $errors->first('name', '
:message
') !!}
@lang('button.cancel')
@lang('button.save')
@stop