2016-03-25 01:18:05 -07:00
|
|
|
@extends('layouts/default')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
|
|
|
{{ trans('admin/custom_fields/general.create_fieldset') }}
|
|
|
|
@parent
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('header_right')
|
|
|
|
<a href="{{ URL::previous() }}" class="btn btn-primary pull-right">
|
|
|
|
{{ trans('general.back') }}</a>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
2016-12-27 12:03:47 -08:00
|
|
|
<div class="col-md-9">
|
|
|
|
<!-- Horizontal Form -->
|
2016-03-25 01:18:05 -07:00
|
|
|
<div class="box box-default">
|
|
|
|
<div class="box-body">
|
2016-12-15 19:17:07 -08:00
|
|
|
{{ Form::open(['route' => 'fieldsets.store', 'class'=>'form-horizontal']) }}
|
2016-03-25 01:18:05 -07:00
|
|
|
<!-- CSRF Token -->
|
2016-12-27 12:03:47 -08:00
|
|
|
{{ csrf_field() }}
|
|
|
|
<!-- Name -->
|
|
|
|
<div class="form-group {{ $errors->has('name') ? ' has-error' : '' }}">
|
|
|
|
<label for="name" class="col-md-4 control-label">
|
|
|
|
{{ trans('admin/custom_fields/general.fieldset_name') }}
|
|
|
|
<i class='fa fa-asterisk'></i>
|
|
|
|
</label>
|
|
|
|
<div class="col-md-6">
|
|
|
|
<input class="form-control" type="text" name="name" id="name" value="{{ Input::old('name') }}" />
|
|
|
|
{!! $errors->first('name', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
2016-12-27 12:03:47 -08:00
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
{{ Form::close() }}
|
2016-12-27 12:03:47 -08:00
|
|
|
</div> <!-- /.box-body-->
|
|
|
|
<div class="box-footer text-right">
|
|
|
|
<button type="submit" class="btn btn-success"><i class="fa fa-check icon-white"></i> {{ trans('general.save') }}</button>
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
2016-12-27 12:03:47 -08:00
|
|
|
</div> <!-- /.box.box-default-->
|
|
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
|
|
<h4>About Fieldsets</h4>
|
|
|
|
<p>Fieldsets work like containers of the custom fields you've created. This allows you to group commonly used custom attributes together for easy associations. </p>
|
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
|
|
|
@stop
|