File: D:/HostingSpaces/MdnDirecteur/hours.komma.cloud/resources/views/settings/kind/edit.blade.php
@extends('settings.master')
@section('title')
<h1>Soort klant wijzigen</h1>
@stop
@section('content1')
<form method="POST" action="/instellingen/soorten/{{$kind->id}} ">
<div class="form-group">
<div class="col-lg-11">
<label>Naam soort</label>
<input name="name" id="name" class="form-control" value="{{$kind->name ?? old('name')}}">
</div>
</div>
@include('partials.generalElements.saveButtons', [
'value' => 'Maak soort'
])
<input type="hidden" name="_token" value="{{csrf_token()}}">
@if(!empty($update))
<input type="hidden" name="_method" value="PUT">
@endif
<input type="hidden" name="ref" value="{{$ref}}">
</form>
@stop