0
只是想創造Laravel 類「形式」一個簡單的形式signup.blade.php沒有發現Laravel5-類「形式」未找到
這是web.php
Route::get('signup', function()
{
return view('signup');
});
這是signup.blade.php
{{ Form::open(array('url' => 'thanks')) }} //Here
{{Form::label('email','Email Address')}}
{{Form::text('email')}}
{{Form::select('os', array(
'linux' => 'Linux',
'mac' => 'Mac OS X',
'windows' => 'Windows'
))}}
{{Form::label('comment','Comments')}}
{{Form::textarea('comment','', array('placeholder' => 'What are your
interests?'))}}
{{Form::checkbox('agree', 'yes', false)}}
{{Form::label('agree', 'I agree to your terms of service')}}
{{Form::submit('signup')}}
{{ Form::close() }}
我錯過了任何use
或include
陳述或者什麼錯在這裏 謝謝!
如果有點不同,我猜 –
你使用哪個版本的Laravel ..? –
它是laravel5 .. –