Migrate Form::close on general settings page

This commit is contained in:
Marcus Moore 2025-02-12 13:18:55 -08:00
parent d141675478
commit 894754e8dc
No known key found for this signature in database

View file

@ -366,7 +366,7 @@
</div> </div>
</div> </div>
<!-- Depreciation method --> <!-- Depreciation method -->
<div class="form-group {{ $errors->has('depreciation_method') ? 'error' : '' }}"> <div class="form-group {{ $errors->has('depreciation_method') ? 'error' : '' }}">
<div class="col-md-3"> <div class="col-md-3">
@ -374,9 +374,9 @@
</div> </div>
<div class="col-md-9"> <div class="col-md-9">
{{ Form::select('depreciation_method', array( {{ Form::select('depreciation_method', array(
'default' => 'Linear (default)', 'default' => 'Linear (default)',
'half_1' => 'Half-year convention, always applied', 'half_1' => 'Half-year convention, always applied',
'half_2' => 'Half-year convention, applied with condition', 'half_2' => 'Half-year convention, applied with condition',
), old('username_format', $setting->depreciation_method), ['class' =>'select2', 'style' => 'width: 80%']) }} ), old('username_format', $setting->depreciation_method), ['class' =>'select2', 'style' => 'width: 80%']) }}
</div> </div>
</div> </div>
@ -423,7 +423,7 @@
</div> <!-- /.col-md-8--> </div> <!-- /.col-md-8-->
{{ Form::close() }} </form>
@stop @stop