@extends('backend.layouts.app')
@section('title') Edit System @endsection
@section('content')
{!! html()->form('PUT', route('admin.systems.update', $system->id))->acceptsFiles(true)->id('system_form')->open() !!}
@include('backend.pages.systems._form')
{{ html()->form()->close() }}
@include('backend.partials.floatingbox')
@endsection
@section('scripts')
@include('backend.pages.systems.partials.js')
@endsection