tethys/resources/views/rdr/settings/shelf/edit.blade.php
Arno Kaimbacher 8dc1f1b048 my changes
2020-06-10 21:09:10 +02:00

28 lines
556 B
PHP

@extends('layouts.app')
@section('content')
<h1 class="title">Edit 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::model($shelf, ['method' => 'PATCH', 'route' => ['settings.shelf.update', $shelf->id]]) !!}
@include('rdr/settings/shelf/_form', ['submitButtonText' => 'Edit Shelf', 'shelfLabel' => 'Edit Shelf.'])
{!! Form::close() !!}
</div>
@stop