@extends('backend.layouts.app') @section('title') Systems References @endsection @section('content') @section('toolbar') @include('backend.layouts.nav', ['current' => 'Dashboard']) @endsection
Systems References
{!! html()->form('POST', route('admin.systems-references.save', $system->id))->acceptsFiles(true)->id('system_form')->open() !!}
@foreach ($system->system_references as $system_reference) @if($system_reference->reference)
{!! html()->label($system_reference->reference->name)->for('ref_'.$system_reference->id)->class('form-label') !!} {!! html()->text('sort_number[]', $system_reference->sort_number)->class('form-control') !!}
@endif @endforeach
{{ html()->form()->close() }}
@endsection