28 lines
513 B
PHP
28 lines
513 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
|
|
<h1 class="title">Add Your Shelf</h1>
|
|
|
|
<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']) !!}
|
|
|
|
@include('rdr/settings/shelf/_form', ['submitButtonText' => 'Add Shelf', 'shelfLabel' => 'Add new Shelf.'])
|
|
|
|
{!! Form::close() !!}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@stop |