@if (session('success'))
Success! {{ session('success') }}
@endif
{{ Form::open(
[
'method'=> 'POST',
'url' => route('entitybuilder.store'),
'enctype' => "multipart/form-data",
'id'=>'create_scaffolding'])
}}
{{ Form::close() }}
{{ (@$scaffolding) ? 'Edit ' : 'Entity Builder - Step 1' }}
{{ Form::text('entity_name','',["class"=>'form-control','autofocus' => 'true']) }}
@if ($errors->has('entity_name'))
{{ $errors->first('entity_name') }}
@endif
{{ Form::text('db_table','',["class"=>'form-control']) }}
@if ($errors->has('db_table'))
{{ $errors->first('db_table') }}
@endif
{{ Form::file(
'importfile',
[
'id' => 'importfile',
'class' => 'file-loading',
'data-allowed-file-extensions'=>'["csv"]',
//'data-file' => '',
])
}}
Click here to download Form-Builder Template csv file
@if ($errors->has('importfile'))
{{ $errors->first('importfile') }}
@endif