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

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