@extends('layouts.tenant.master')
@section('title', 'Manage Role Menu')
@section('css')
@endsection
@section('style')
@endsection
@section('breadcrumb-title')
Manage User Role
@endsection
@section('breadcrumb-items')
Manage
User
Role
@endsection
@section('content')
@endsection
@section('script')
@if (session('duplicate_assignment'))
@endif
@if (session('success'))
Swal.fire({
icon: 'success',
title: 'Success!',
text: '{{ session('success') }}',
confirmButtonColor: '#3085d6',
timer: 3000
});
@endif
@if (session('error'))
Swal.fire({
icon: 'error',
title: 'Error!',
text: '{{ session('error') }}',
confirmButtonColor: '#d33',
timer: 3000
});
@endif
@endsection