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

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