@extends('system.importer.app') @section('title', 'Import Configuration') @section('content')
| IMPORTANT NOTES
 | |
| Database ConfigEnter the database information for your legacy phpVMS installation | |
| Database Host | 
            {{ Form::input('text', 'db_host', '127.0.0.1', ['class' => 'form-control']) }}
           | 
| Database Port | 
            {{ Form::input('text', 'db_port', '3306', ['class' => 'form-control']) }}
           | 
| Database Name | 
            {{ Form::input('text', 'db_name', 'phpvms', ['class' => 'form-control']) }}
           | 
| Database User | 
            {{ Form::input('text', 'db_user', null, ['class' => 'form-control']) }}
           | 
| Database Password | 
            {{ Form::input('text', 'db_pass', null, ['class' => 'form-control']) }}
           | 
| {{ Form::submit('Test Database Credentials', ['class' => 'btn btn-info', 'id' => 'dbtest_button']) }} | |
| Database Prefix | 
            {{ Form::input('text', 'db_prefix', 'phpvms_', ['class' => 'form-control']) }}
             Prefix of the tables, if you're using one | 
{{ Form::submit('Start Importer >>', ['class' => 'btn btn-success']) }}
{{ Form::close() }}