Backend\FormBuilderController::edit PHP Метод

edit() публичный Метод

Show the form for editing the specified form.
public edit ( integer $id ) : Response
$id integer
Результат Response
    public function edit($id)
    {
        $form = \BuiltForm::findOrFail($id);
        $this->layout->title = 'Edit Form';
        $this->layout->content = \View::make($this->link_type . '.' . $this->current_theme . '.formbuilders.create_edit')->with('form', $form);
    }