update for version 1.0.2
This commit is contained in:
@@ -17,7 +17,7 @@ class="active"
|
||||
{!! Form::model($footer3,['url' => 'post-create-footer3/'.$footer3->id, 'method' => 'PATCH','files'=>true]) !!}
|
||||
<div class="box box-primary">
|
||||
<div class="box-header">
|
||||
<h4 class="box-title">Footer 3</h4>{!! Form::submit('save',['class'=>'form-group btn btn-primary pull-right'])!!}
|
||||
<h4 class="box-title">{!! Lang::get('lang.footer3') !!}</h4>{!! Form::submit(Lang::get('lang.save'),['class'=>'form-group btn btn-primary pull-right'])!!}
|
||||
</div>
|
||||
@if(Session::has('success'))
|
||||
<div class="alert alert-success alert-dismissable">
|
||||
@@ -39,12 +39,12 @@ class="active"
|
||||
<!-- Name text form Required -->
|
||||
<div class="box-body table-responsive">
|
||||
<div class="form-group {{ $errors->has('title') ? 'has-error' : '' }}">
|
||||
{!! Form::label('title','Title') !!}
|
||||
{!! Form::label('title',Lang::get('lang.title') ) !!}
|
||||
{!! $errors->first('title', '<spam class="help-block">:message</spam>') !!}
|
||||
{!! Form::text('title',null,['class' => 'form-control']) !!}
|
||||
</div>
|
||||
<div class="form-group {{ $errors->has('footer') ? 'has-error' : '' }}">
|
||||
{!! Form::label('footer','Footer') !!}
|
||||
{!! Form::label('footer', Lang::get('lang.footer') ) !!}
|
||||
{!! $errors->first('footer', '<spam class="help-block">:message</spam>') !!}
|
||||
{!! Form::textarea('footer',null,['class' => 'form-control','size' => '30x5','id'=>'footer']) !!}
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user