AsgardCms/Workshop

View on GitHub
Resources/views/admin/workbench/tabs/migrate.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
{!! Form::open(['route' => 'admin.workshop.workbench.migrate.index', 'method' => 'post']) !!}
    <div class="box-body">
        <div class='form-group{{ $errors->has('module') ? ' has-error' : '' }}'>
            {!! Form::label('module', trans('workshop::workbench.form.module name')) !!}
            {!! Form::select('module', $modules, null, ['class' => 'form-control']) !!}
            {!! $errors->first('module', '<span class="help-block">:message</span>') !!}
        </div>
    </div>
    <div class="box-footer">
        <button type="submit" class="btn btn-primary btn-flat">{{ trans('workshop::workbench.button.migrate') }}</button>
    </div>
{!! Form::close() !!}