@extends('layouts.base') @section('css') @endsection @section('content')

Welcome to your {{env('APP_NAME')}} dashboard!

Use the links on the left hand side to navigate your {{env('APP_NAME')}} dashboard.

Change Password

Old Password: New Password:
@if ($role == 'admin')

Links

@include('snippets.link_table', [ 'links' => $admin_links ]) {!! $admin_links->fragment('admin')->render() !!}

Users

@include('snippets.user_table', [ 'users' => $admin_users ]) {!! $admin_users->fragment('admin')->render() !!}
@endif @if ($api_active == 1)

Developer

API keys and documentation for developers.

Documentation: http://docs.polr.me/en/latest/developer-guide/api/

API Key:

API Quota:

@if ($api_quota == -1) unlimited @else {{$api_quota}} @endif

requests per minute
@endif
@endsection @section('js') {{-- Include modal templates --}} @include('snippets.modals') {{-- Include extra JS --}} @endsection