Last active
October 9, 2018 18:21
-
-
Save evercode1/ad764976dc4377193409b6f65dada81c to your computer and use it in GitHub Desktop.
Revisions
-
evercode1 revised this gist
Jan 28, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ <label class="control-label">Image Weight</label> <input type="number" class="form-control" name="image_weight" value="{{ old('image_weight') ? old('image_weight') : 100 }}"> @if ($errors->has('image_weight')) -
evercode1 created this gist
Aug 30, 2016 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ <!-- image_weight Form Input --> <div class="form-group{{ $errors->has('image_weight') ? ' has-error' : '' }}"> <label class="control-label">Image Weight</label> <input type="number" class="form-control" name="image_weight" value="{{ old('image_weight') }}"> @if ($errors->has('image_weight')) <span class="help-block"> <strong>{{ $errors->first('image_weight') }}</strong> </span> @endif </div>