@component('components.widget', ['class' => 'box-primary'])
{!! Form::open(['url' => action('RoleController@store'), 'method' => 'post', 'id' => 'role_add_form' ]) !!}
{!! Form::label('name', __( 'user.role_name' ) . ':*') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => __( 'user.role_name' ) ]); !!}
@if(in_array('service_staff', $enabled_modules))
@lang( 'lang_v1.user_type' )
@show_tooltip(__('restaurant.tooltip_service_staff'))
@endif
@lang( 'role.user' )
@lang( 'user.roles' )
@lang( 'role.supplier' )
@lang( 'role.customer' )
@lang( 'business.product' )
@show_tooltip(__('lang_v1.view_purchase_price_tooltip'))
@lang( 'role.purchase' )
@show_tooltip(__('lang_v1.purchase_payments'))
@lang( 'sale.sale' )
@show_tooltip(__('lang_v1.sell_payments'))
@lang( 'role.brand' )
@lang( 'role.tax_rate' )
@lang( 'role.unit' )
@lang( 'category.category' )
@lang( 'role.report' )
@lang( 'role.settings' )
@lang( 'role.dashboard' ) @show_tooltip(__('tooltip.dashboard_permission'))
@lang( 'account.account' )
@if(in_array('tables', $enabled_modules) && in_array('service_staff', $enabled_modules) )
@lang( 'restaurant.bookings' )
@endif
@lang( 'role.access_locations' ) @show_tooltip(__('tooltip.access_locations_permission'))
@show_tooltip(__('tooltip.all_location_permission'))
@foreach($locations as $location)
@endforeach
@lang( 'lang_v1.access_selling_price_groups' )
@if(count($selling_price_groups) > 0)
@foreach($selling_price_groups as $selling_price_group)
@endforeach
@endif
@include('role.partials.module_permissions')
{!! Form::close() !!}
@endcomponent
@endsection