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/SBogers10/hours.komma.pro/resources/views/settings/taskTemplate/create.blade.php
@extends('settings.master')
@section('title')
    <h1>Taak template aanmaken</h1>
@stop

@section('content1')
    <form method="POST" action="/instellingen/taken">
        <div class="form-group">
            <div class="col-lg-11">
                <label>Naam Taak</label>
                <input name="name" id="name" class="form-control" value="{{$taskTemplate->name ?? old('name')}}">
                <label>Standaard uurprijs</label>
                <input name="hourly_rate" id="hourlyrate" class="form-control" value="{{$taskTemplate->hourly_rate ?? old('hourly_rate')}}">

                <div class="form-group">
                    <label class="control-label">Standaard facturabel</label><br>
                    <div class="btn-group btn-radio">
                        <input id="billable_yes" name="billable" type="radio" value="1" @if($taskTemplate->standard_billable == 1) checked @endif><label for="billable_yes">Ja</label>
                        &nbsp;&nbsp;
                        <input id="billable_no" name="billable" type="radio" value="0" @if($taskTemplate->standard_billable != 1) checked @endif><label for="billable_no">Nee</label>
                    </div>
                </div>
                <div class="form-group">
                    <label class="control-label">Standaard productiviteit</label><br>
                    <div class="btn-group btn-radio">
                        <input id="productivity_yes" name="productivity" type="radio" value="1" @if($taskTemplate->standard_productivity == 1) checked @endif>
                        <label for="productivity_yes">Ja</label>&nbsp;&nbsp;
                        <input id="productivity_no" name="productivity" type="radio" value="0" @if($taskTemplate->standard_productivity != 1) checked @endif>
                        <label for="productivity_no">Nee</label>
                    </div>
                </div>
            </div>
        </div>
        @include('partials.generalElements.saveButtons', [
                'value' => 'Maak taak template'
            ])
        <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}}">
        @if(!empty($secondRef))
            <input type="hidden" name="secondRef" value="{{$secondRef}}">
        @endif
    </form>
@stop