• This project
    • Loading...
  • Sign in

Зуев Егор / wiki.dev

Logo belkanton
Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • wiki.dev
  • resources
  • views
  • settings
  • roles
  • create.blade.php
  • Dan Brown's avatar
    Extracted text for remaining views · 0775cd09
    0775cd09
    Dan Brown authored 2016-12-04 14:08:04 +0000
create.blade.php 332 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
@extends('base')

@section('content')

    @include('settings/navbar', ['selected' => 'roles'])

    <div class="container">
        <h1>{{ trans('settings.role_create') }}</h1>

        <form action="{{ baseUrl("/settings/roles/new") }}" method="POST">
            @include('settings/roles/form')
        </form>
    </div>

@stop