Created
September 28, 2015 21:14
-
-
Save zach2825/f420aa4dcb9501153b05 to your computer and use it in GitHub Desktop.
Meant to be a field sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="form-group"> | |
<label for="FieldNameHere" class="form-label">Field Label Here</label> | |
{!! Form::text('FieldNameHere', null, ['class'=>'form-control', 'placeholder' => 'Field Label Here']) !!} | |
{!! $errors->first('FieldNameHere', '<span class="help-block">:message</span>') !!} | |
</div>{{-- end FieldNameHere --}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment