{{_("General Settings")}}

{{ csrf_token()|raw }}
{% if USER.user_type == 1 %}
{% elseif USER.user_type == 4 %}
{% else %} {% endif %} {% if SETTINGS.guest_mode %}
{% endif %}
{% if chat_room.cover_image %} {% endif %}
{{_("Room Users")}}

{% for room_user in room_users %} {% endfor %}
{{_("Name")}} {{_("Email")}} {{_("User Type")}}
{{room_user.first_name}} {{room_user.email}} {% if room_user.user_type == 1 %} Admin {% elseif room_user.user_type == 2 %} Member {% elseif room_user.user_type == 3 %} Guest {% endif %} {% if USER.user_type == 2 and room_user.user_type == 1 %}   {% else %} kick unkick {% endif %}
{{_("Embed Chat Room")}}

{{_("Here is the iframe embed code to this chat room. You can copy and paste this on your website.")}}

{{_("Update height and width parameters accourding to your requirements.")}}

<iframe src="{{ SITE_URL }}{{chat_room.slug}}" width="600px" height="600px" frameborder="0"></iframe>