@extends("agentportal.layouts.layout") @section("title", trans("message_lang.LBL_VIEW_AGENT_LOCATION_ROLE")) @section("content")

{!! trans("message_lang.LBL_VIEW_AGENT_LOCATION_ROLE") !!}

{{ $role->name }}
{{ $role->code }}
{{ $role->description ? $role->description : '-' }}
@if($role->is_limited)
{{ trans('message_lang.LBL_YES') }}
@endif @if($role->features->isNotEmpty())
{{ trans('message_lang.LBL_FEATURES') }}
    @foreach($role->features as $feature)
  • {{ $feature->name }}
  • @endforeach
@endif
@endsection