@extends('layouts.app') @section('title', __('role.edit_role')) @section('content')

@lang( 'role.edit_role' )

{!! Form::open(['url' => action('RoleController@update', [$role->id]), 'method' => 'PUT', 'id' => 'role_form' ]) !!}
{!! Form::label('name', __( 'user.role_name' ) . ':*') !!} {!! Form::text('name', str_replace( '#' . auth()->user()->business_id, '', $role->name) , ['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( 'role.supplier' )


@lang( 'role.customer' )


@lang( 'business.product' )


@lang( 'role.purchase' )


@lang( 'sale.sale' )


@lang( 'role.brand' )


@lang( 'role.tax_rate' )


@lang( 'role.unit' )


@lang( 'category.category' )


@lang( 'role.report' )


@lang( 'role.settings' )


@lang( 'role.dashboard' )


@if(in_array('tables', $enabled_modules) && in_array('service_staff', $enabled_modules) )

@lang( 'restaurant.bookings' )


@endif

@lang( 'role.access_locations' )

@show_tooltip(__('tooltip.all_location_permission'))
@foreach($locations as $location)
@endforeach
{!! Form::close() !!}
@endsection