您可以将数据库模型绑定到您的表单:
Form::model($provider, array('route' => array('provider.update', $user->id)))
Laravel 会自动用数据库数据填充你的输入。
这可能是你的accountEdit
看法:
<html>
<head>
<title></title>
</head>
<body>
{{ Form::model($provider, array('route' => array('provider.update', $provider->id))) }}
{{ Form::label('providerName', 'Full Name:')) }}
{{ Form::text('providerName') }}
{{ Form::text('providerSurname') }}
{{ Form::label('providerEmail', 'E-Mail Address') }}
{{ Form::text('providerEmail') }}
{{ Form::submit('Send this form!') }}
{{ Form::close() }}
</body>
</html>
这可能是你的路线
Route::get('edit', function() {
$provider = Provider::find(1);
return View::make('accountEdit')->with(compact('provider'));
});
Route::get('provider/update', array('as'=>'provider.update', function() {
dd(Input::all())
});