tethys/resources/views/rdr/settings/shelf/add.blade.php

28 lines
513 B
PHP
Raw Normal View History

2018-08-06 12:30:51 +00:00
@extends('layouts.app')
2015-07-19 06:49:24 +00:00
@section('content')
2018-08-06 12:30:51 +00:00
<h1 class="title">Add Your Shelf</h1>
2015-07-19 06:49:24 +00:00
<div class="col-md-4">
<a href="{{ route('settings.shelf') }}" class="btn btn-danger">
<span class="glyphicon glyphicon-chevron-left" ></span> BACK
</a>
</div>
<div class="col-md-4" >
{!! Form::open(['route' => 'settings.shelf.post']) !!}
2018-08-06 12:30:51 +00:00
@include('rdr/settings/shelf/_form', ['submitButtonText' => 'Add Shelf', 'shelfLabel' => 'Add new Shelf.'])
2015-07-19 06:49:24 +00:00
{!! Form::close() !!}
</div>
@stop