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