Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/views/admin/nests/new.blade.php
7460 views
1
@extends('layouts.admin')
2
3
@section('title')
4
New Nest
5
@endsection
6
7
@section('content-header')
8
<h1>New Nest<small>Configure a new nest to deploy to all nodes.</small></h1>
9
<ol class="breadcrumb">
10
<li><a href="{{ route('admin.index') }}">Admin</a></li>
11
<li><a href="{{ route('admin.nests') }}">Nests</a></li>
12
<li class="active">New</li>
13
</ol>
14
@endsection
15
16
@section('content')
17
<form action="{{ route('admin.nests.new') }}" method="POST">
18
<div class="row">
19
<div class="col-md-12">
20
<div class="box">
21
<div class="box-header with-border">
22
<h3 class="box-title">New Nest</h3>
23
</div>
24
<div class="box-body">
25
<div class="form-group">
26
<label class="control-label">Name</label>
27
<div>
28
<input type="text" name="name" class="form-control" value="{{ old('name') }}" />
29
<p class="text-muted"><small>This should be a descriptive category name that encompasses all of the eggs within the nest.</small></p>
30
</div>
31
</div>
32
<div class="form-group">
33
<label class="control-label">Description</label>
34
<div>
35
<textarea name="description" class="form-control" rows="6">{{ old('description') }}</textarea>
36
</div>
37
</div>
38
</div>
39
<div class="box-footer">
40
{!! csrf_field() !!}
41
<button type="submit" class="btn btn-primary pull-right">Save</button>
42
</div>
43
</div>
44
</div>
45
</div>
46
</form>
47
@endsection
48
49