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

28 lines
549 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 Book</h1>
2015-07-19 06:49:24 +00:00
<div class="col-md-4">
2018-08-06 12:30:51 +00:00
<a href="{{ route('settings.book') }}" class="btn btn-danger">
2015-07-19 06:49:24 +00:00
<span class="glyphicon glyphicon-chevron-left" ></span> BACK
</a>
</div>
<div class="col-md-4" >
{!! Form::model($book, ['method' => 'PATCH', 'route' => ['settings.book.update', $book->id]]) !!}
2018-08-06 12:30:51 +00:00
@include('rdr/settings/book/_form', ['submitButtonText' => 'Edit Book', 'bookLabel' => 'Edit Book.'])
2015-07-19 06:49:24 +00:00
{!! Form::close() !!}
</div>
@stop