{!! Form::open(['route' => 'admin.workshop.workbench.generate.index', 'method' => 'post']) !!}

{{ trans('workshop::workbench.subtitle.generate new module') }}

{!! Form::label('name', trans('workshop::workbench.form.module name')) !!} {!! Form::text('name', Input::old('name'), ['class' => 'form-control', 'placeholder' => trans('workshop::workbench.form.module name')]) !!} {!! $errors->first('name', ':message') !!}
{!! Form::close() !!}
{!! Form::open(['route' => 'admin.workshop.workbench.install.index', 'method' => 'post']) !!}

{{ trans('workshop::workbench.subtitle.install new module by vendor name') }}

{!! Form::label('vendorName', trans('workshop::workbench.form.vendor name of the module')) !!} {!! Form::text('vendorName', Input::old('vendorName'), ['class' => 'form-control', 'placeholder' => trans('workshop::workbench.form.vendor name of the module')]) !!} {!! $errors->first('vendorName', ':message') !!}
{!! Form::close() !!}