HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/MdnDirecteur/hours.komma.cloud/resources/views/settings/kind/create.blade.php
@extends('settings.master')
@section('title')
    <h1>Soort klant aanmaken</h1>
@stop

@section('content1')
    <form method="POST" action="/instellingen/soorten">
        <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