forked from davzie/laravel-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnew.blade.php
32 lines (27 loc) · 1.13 KB
/
new.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@extends('laravel-bootstrap::layouts.interface-new')
@section('title')
Create New Content Blocks
@stop
@section('heading')
<h1>Create New Content Block</h1>
@stop
@section('form-items')
<div class="form-group">
{{ Form::label( "title" , 'Block Title' , array( 'class'=>'col-lg-2 control-label' ) ) }}
<div class="col-lg-10">
{{ Form::text( "title" , Input::old( "title" ) , array( 'class'=>'form-control' , 'placeholder'=>'Block Title' ) ) }}
</div>
</div>
<div class="form-group">
{{ Form::label( "key" , 'Block Key' , array( 'class'=>'col-lg-2 control-label' ) ) }}
<div class="col-lg-10">
{{ Form::text( "key" , Input::old( "key" ) , array( 'class'=>'form-control' , 'placeholder'=>'Block Key' ) ) }}
</div>
</div>
<div class="form-group">
{{ Form::label( "content" , 'Block Content' , array( 'class'=>'col-lg-2 control-label' ) ) }}
<div class="col-lg-10">
{{ Form::textarea( "content" , Input::old( "content" ) , array( 'class'=>'form-control rich' , 'placeholder'=>'Block Content' ) ) }}
</div>
</div>
@stop