Method Illuminate\View\View::__toString() must not throw an exception
Niestety nic mi to nie mówi

Wiem że błąd występuje w tym miejscu:
{


{


$settingsForm = []; $settingsForm['formOpen'] = [ 'method' => 'POST', 'action' => 'PagesController@update', 'class' => 'form-horizontal', 'role' => 'form' ];
{!! Form::open([$settingsForm['formOpen']]) !!} //tak nie działa pokazuje błąd Method Illuminate\View\View::__toString() must not throw an exception //lub {!! Form::open($settingsForm['formOpen']) !!} //tak niby dodaje do formularza ponieważ formularz poprawnie się wyświetli ale zaraz za formularzem jest ten sam błąd Method Illuminate\View\View::__toString() must not throw an exception //a jeżeli zrobie tak: {!! Form::model(['method' => 'POST', 'action' => 'PagesController@insert', 'class' => 'form-horizontal', 'role' => 'form']) !!} //wpisze wszystko z palca to bez problemu strona się wczytuje
{!! Form::model(['method' => 'POST', 'action' => 'PagesController@insert', 'class' => 'form-horizontal', 'role' => 'form']) !!} // czy też {!! Form::open(['method' => 'POST', 'action' => 'PagesController@insert', 'class' => 'form-horizontal', 'role' => 'form']) !!} //open nie model
//poprawna forma to {!! Form::open($settingsForm['formOpen']) !!}