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