@extends('backend.layouts.app') @section('title', app_name() . ' | ' .'New shape') @section('content') {{ html()->form('POST', route('admin.shapes.store'))->attribute('enctype', 'multipart/form-data')->open() }}

New shape


Metadata
{{ html()->label('Description')->class('col-md-2 form-control-label')->for('description') }}
{{ html()->textarea('description') ->class('form-control') ->placeholder('Description') }}
Files
{{ html()->label('Baseline')->for('baseline')->attribute('style', 'font-weight:bold') }} {{ html()->file('baseline')->class('form-control') }}
{{ html()->closeModelForm() }} @endsection @push('after-scripts') @endpush @push('after-styles') @endpush