-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
89418e3
commit 4fa56dc
Showing
22 changed files
with
93 additions
and
93 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
<div class="form-group"> | ||
{!! Form::label('title', 'Title:') !!} | ||
{!! Form::text('title', null, ['class'=>'form-control']) !!} | ||
{{ Form::label('title', 'Title:') }} | ||
{{ Form::text('title', null, ['class'=>'form-control']) }} | ||
</div> | ||
|
||
<div class="form-group"> | ||
{!! Form::label('excerpt', 'Excerpt:') !!} | ||
{!! Form::textarea('excerpt', null, ['class'=>'form-control']) !!} | ||
{{ Form::label('excerpt', 'Excerpt:') }} | ||
{{ Form::textarea('excerpt', null, ['class'=>'form-control']) }} | ||
</div> | ||
|
||
<div class="form-group"> | ||
{!! Form::label('body', 'Body:') !!} | ||
{!! Form::textarea('body', null, ['class'=>'form-control']) !!} | ||
{{ Form::label('body', 'Body:') }} | ||
{{ Form::textarea('body', null, ['class'=>'form-control']) }} | ||
</div> | ||
|
||
<div class="form-group"> | ||
{!! Form::label('published_at', 'Publish On:') !!} | ||
{!! Form::input('date', 'published_at', date('Y-m-d'), ['class'=>'form-control']) !!} | ||
{{ Form::label('published_at', 'Publish On:') }} | ||
{{ Form::input('date', 'published_at', date('Y-m-d'), ['class'=>'form-control']) }} | ||
</div> | ||
|
||
<div class="form-group"> | ||
{!! Form::label('tags', 'Tags:') !!} | ||
{!! Form::select('tags', $tags, null, ['class'=>'form-control', 'multiple']) !!} | ||
{{ Form::label('tags', 'Tags:') }} | ||
{{ Form::select('tags', $tags, null, ['class'=>'form-control', 'multiple']) }} | ||
</div> | ||
|
||
<div class="form-group"> | ||
{!! Form::submit($submitButtonText, ['class'=>'btn btn-primary form-control']) !!} | ||
{{ Form::submit($submitButtonText, ['class'=>'btn btn-primary form-control']) }} | ||
</div> |
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
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
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
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
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
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
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
Oops, something went wrong.