@extends('layouts.app') @section('content')
@if(Session::has('message')) {{ Session::get('message') }} @endif
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
{!! Form::open(array('url'=>'sximo/module/dopackage', 'class'=>'form-horizontal','files' => true , 'parsley-validate'=>'','novalidate'=>' ')) !!}

Instant Module

{!! Form::text('app_name', '',array('class'=>'form-control', 'placeholder'=>'Enter Application Title', 'required'=>'true' )) !!}
{!! Form::textarea('sql_cmd', '',array('class'=>'form-control', 'placeholder'=>'Copy SQL Statement from PhpMyAdmin and paste here', 'rows' => 5 )) !!}
{!! Form::file('sql_cmd_upload',array('class'=>'form-control', 'placeholder'=>'Enter SQL Statement')) !!}
@foreach( $file_inc['app/Library'] as $file )
{!! Form::checkbox('file_library[]', $file ) !!}
@endforeach
@foreach( $file_inc['resources/lang/en'] as $file )
{!! Form::checkbox('file_lang[]', $file) !!}
@endforeach

What's this ?

Zip Package is a tool for backup your module as installer .
You can backup current module and install the modules to other application based Sximo builder - Edition Laravel

All module zipped are stored at uploads/zip folder , you can download them.

{!! Form::hidden('enc_id' , $enc_id ) !!} {!! Form::hidden('enc_module' , $enc_module ) !!}
{!! Form::close() !!}
@endsection