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

28 lines
556 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">Edit 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::model($shelf, ['method' => 'PATCH', 'route' => ['settings.shelf.update', $shelf->id]]) !!}
2018-08-06 12:30:51 +00:00
@include('rdr/settings/shelf/_form', ['submitButtonText' => 'Edit Shelf', 'shelfLabel' => 'Edit Shelf.'])
2015-07-19 06:49:24 +00:00
{!! Form::close() !!}
</div>
@stop