2021-02-02 06:40:11 +00:00
|
|
|
@extends('layouts.librenmsv1')
|
|
|
|
|
|
|
|
|
|
@section('title', __('Create Service Template'))
|
|
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<form action="{{ route('services.templates.store') }}" method="POST" role="form"
|
2021-03-18 08:14:45 -05:00
|
|
|
class="form-horizontal service-template-form col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2 col-sm-12">
|
2021-11-28 21:17:11 -06:00
|
|
|
<legend><h2>{{ __('Create Service Template') }}</h2></legend>
|
2021-02-02 06:40:11 +00:00
|
|
|
<div class='alert alert-info'>Service Template will created for the specified Device Group.</div>
|
|
|
|
|
@csrf
|
|
|
|
|
<div class='well well-lg'>
|
|
|
|
|
@include('service-template.form')
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<hr>
|
2021-11-28 21:17:11 -06:00
|
|
|
<center><button type="submit" class="btn btn-primary">{{ __('Save') }}</button>
|
2021-02-02 06:40:11 +00:00
|
|
|
<a type="button" class="btn btn-danger"
|
2021-11-28 21:17:11 -06:00
|
|
|
href="{{ route('services.templates.index') }}">{{ __('Cancel') }}</a>
|
2021-02-02 06:40:11 +00:00
|
|
|
</center>
|
|
|
|
|
</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
|