@extends('layouts.app') @section('content')

Manage Form

{!! Form::open(array('url'=>'core/forms?return='.$return, 'class'=>'form-vertical validated','files' => true , 'parsley-validate'=>'','novalidate'=>' ')) !!}
Basic Form {!! Form::hidden('formID', $row['formID']) !!}
{!! Form::text('name', $row['name'],array('class'=>'form-control input-sm', 'placeholder'=>'', 'required'=>'true' )) !!}
{!! Form::select('tablename', $tables , $row['tablename'] , array('class'=>'form-control input-sm', 'required'=>'true' )); !!}
{!! Form::text('email', $row['email'],array('class'=>'form-control input-sm', 'placeholder'=>'', )) !!}
{!! Form::text('redirect', $row['redirect'],array('class'=>'form-control input-sm', 'placeholder'=>'', )) !!} Leave blank or (.) mark if want to stay on current page after submited
{!! Form::close() !!}
@if(Session::get('gid') ==1) @endif
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@stop