![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/resources/views/admin/category-box/ |
@extends('layouts.admin.app') @section('content') <!-- Main content --> <section class="content"> @include('layouts.errors-and-messages') <div class="box"> {!! Form::open(['method' => 'POST','route' => ['admin.category.box.store'], 'class'=>'form','enctype'=>'multipart/form-data']) !!} <div class="box-body"> <div class="form-group"> <label for="section">Section<span class="text-danger">*</span></label> {!! Form::select('section', $sections, null, array('placeholder' => 'Select Section','class' => 'form-control ckeditor','id'=>'section')) !!} </div> <div class="form-group"> <label for="title">Title <span class="text-danger">*</span></label> {!! Form::text('title', null, array('placeholder' => 'Title','class' => 'form-control','id'=>'title')) !!} </div> <div class="form-group"> <label for="sub_title">Sub Title<span class="text-danger">*</span></label> {!! Form::textarea('sub_title', null, array('placeholder' => 'Sub Title','class' => 'form-control ckeditor','id'=>'sub_title')) !!} </div> <div class="form-group"> <label for="link">Link</label> {!! Form::text('link', null, array('placeholder' => 'Link','class' => 'form-control','id'=>'link')) !!} </div> <div class="form-group"> <label for="image">Image</label> {!! Form::file('image', array('placeholder' => 'Image','class' => 'form-control','id'=>'image')) !!} </div> <div class="form-group"> <label for="link">Link</label> {!! Form::text('link', null, array('placeholder' => 'Link','class' => 'form-control','id'=>'link')) !!} </div> <div class="form-group"> <label for="meta_alt">Alt</label> {!! Form::text('meta_alt', null, array('placeholder' => 'Alt','class' => 'form-control','id'=>'meta_alt')) !!} </div> </div> <!-- /.box-body --> <div class="box-footer"> <div class="btn-group"> <button type="submit" class="btn btn-primary btn-sm">Create</button> </div> </div> {!! Form::close() !!} </div> <!-- /.box --> </section> <!-- /.content --> @endsection