Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2019-06-19 16:01:53 -05:00
@extends('layouts.librenmsv1')
@section('title', __('Edit Device Group'))
@section('content')
<div class="container">
<div class="row">
<form action="{{ route('device-groups.update', $device_group->id) }}" method="POST" role="form"
class="form-horizontal device-group-form col-md-10 col-md-offset-1 col-sm-12">
<legend>{{ __('Edit Device Group') }}: {{ $device_group->name }}</legend>
2019-06-19 16:01:53 -05:00
{{ method_field('PUT') }}
2019-07-17 07:20:26 -05:00
@csrf
2019-06-19 16:01:53 -05:00
@include('device-group.form')
<div class="form-group">
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-sm-offset-2">
<button type="submit" class="btn btn-primary">{{ __('Save') }}</button>
2019-06-19 16:01:53 -05:00
<a type="button" class="btn btn-danger"
href="{{ route('device-groups.index') }}">{{ __('Cancel') }}</a>
2019-06-19 16:01:53 -05:00
</div>
</div>
</form>
</div>
</div>
@endsection
@section('javascript')
<script src="{{ asset('js/sql-parser.min.js') }}"></script>
<script src="{{ asset('js/query-builder.standalone.min.js') }}"></script>
@endsection