@extends('backend.layouts.app')
@section('title') New Project @endsection
@section('content')
{!! html()->form('POST', route('admin.projects.store'))->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