HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/spilicensing/resources/views/activitytype/edit.blade.php
@extends('layouts.master')

@section('content')

    <h1>Edit Activitytype</h1>
    <hr/>

    {!! Form::model($activitytype, [
        'method' => 'PATCH',
        'url' => ['activitytype', $activitytype->id],
        'class' => 'form-horizontal'
    ]) !!}

                <div class="form-group {{ $errors->has('activityType') ? 'has-error' : ''}}">
                {!! Form::label('activityType', 'Activitytype: ', ['class' => 'col-sm-3 control-label']) !!}
                <div class="col-sm-6">
                    {!! Form::text('activityType', null, ['class' => 'form-control']) !!}
                    {!! $errors->first('activityType', '<p class="help-block">:message</p>') !!}
                </div>
            </div>


    <div class="form-group">
        <div class="col-sm-offset-3 col-sm-3">
            {!! Form::submit('Update', ['class' => 'btn btn-primary form-control']) !!}
        </div>
    </div>
    {!! Form::close() !!}

    @if ($errors->any())
        <ul class="alert alert-danger">
            @foreach ($errors->all() as $error)
                <li>{{ $error }}</li>
            @endforeach
        </ul>
    @endif

@endsection