I am using Form Model Binding in Laravel for my update views in order to achieve the priority 1. Session Flash Data (Old Input) 2. Explicitly Passed Value 3. Model Attribute Data
{{ Form::model($model, array('url' => $route.'/update/'.$model->id)) }}
{{ Form::label('price', trans_choice('app.price', 1), array('id' => 'price_label')) }}
{{ Form::text('price', null, array('id' => 'price')) }}
This works fine but I would like to do the same without using the blade notation for input fiels, that is I would like to replace
{{ Form::text('price', null, array('id' => 'price')) }}
with
<input type="text" name="price" id="price" value="">
but still get the above-mentioned priority, is this possible?