.row .col-md-6 %br .a{:class => "form-group{{ $errors->has('name') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "name"} Nombre .col-md-12 {!! Form::text('name', null, ["class"=>"form-control", "required"=>"required", "id"=>"first"]) !!} - if ($errors->has('name')) %span.help-block %strong {{ $errors->first('name') }} .col-md-6 .a{:class => "form-group{{ $errors->has('slug') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "slug"} URL Slug .col-md-12 {!! Form::text('slug', null, ["class"=>"form-control", "required"=>"required", "id"=>"second"]) !!} - if ($errors->has('slug')) %span.help-block %strong {{ $errors->first('slug') }} .row .col-md-6 %br .a{:class => "form-group{{ $errors->has('name_aux') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "name_aux"} Nombre auxiliar .col-md-12 {!! Form::text('name_aux', null, ["class"=>"form-control"]) !!} - if ($errors->has('name_aux')) %span.help-block %strong {{ $errors->first('name_aux') }} .col-md-6 .a{:class => "form-group{{ $errors->has('status') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "slug"} Estatus .col-md-12 {!! Form::select('status', [true=>'Activo', false=>'Inactivo'], null, ["class"=>"form-control", "required"=>"required"]) !!} - if ($errors->has('status')) %span.help-block %strong {{ $errors->first('status') }} .row .col-md-6 .a{:class => "form-group{{ $errors->has('cover') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "cover"} Imagen de fondo - if (isset($landing)) %span %a.btn.btn-xs.accent{:href=>'#', "data-toggle"=>"modal", "data-target"=>"#showCover", "ui-toggle-class"=>"fade-up-big" } Ver actual %i.fa.fa-eye .col-md-12 {!! Form::file('cover', null, ["class"=>"form-control"]) !!} - if ($errors->has('cover')) %span.help-block %strong {{ $errors->first('cover') }} .col-md-6 .a{:class => "form-group{{ $errors->has('logo') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "logo"} Logotipo - if (isset($landing)) %span %a.btn.btn-xs.accent{:href=>'#', "data-toggle"=>"modal", "data-target"=>"#showLogo", "ui-toggle-class"=>"fade-up-big" } Ver actual %i.fa.fa-eye .col-md-12 {!! Form::file('logo', null, ["class"=>"form-control"]) !!} - if ($errors->has('logo')) %span.help-block %strong {{ $errors->first('logo') }} .row .col-md-6 %br .a{:class => "form-group{{ $errors->has('button_text') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "button_text"} Texto del boton .col-md-12 {!! Form::text('button_text', null, ["class"=>"form-control", "required"=>"required"]) !!} - if ($errors->has('button_text')) %span.help-block %strong {{ $errors->first('button_text') }} .col-md-6 .a{:class => "form-group{{ $errors->has('button_url') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "button_url"} Url del boton .col-md-12 {!! Form::text('button_url', null, ["class"=>"form-control", "required"=>"required"]) !!} - if ($errors->has('button_url')) %span.help-block %strong {{ $errors->first('button_url') }} .row .col-md-6 %br .a{:class => "form-group{{ $errors->has('text1') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "text1"} Texto 1 .col-md-12 {!! Form::text('text1', null, ["class"=>"form-control"]) !!} - if ($errors->has('text1')) %span.help-block %strong {{ $errors->first('text1') }} .col-md-6 .a{:class => "form-group{{ $errors->has('text2') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "text1"} Texto 2 .col-md-12 {!! Form::text('text2', null, ["class"=>"form-control"]) !!} - if ($errors->has('text2')) %span.help-block %strong {{ $errors->first('text2') }} .row .col-md-6 %br .a{:class => "form-group{{ $errors->has('text3') ? ' has-error' : '' }} "} %label.col-md-12.control-label{:for => "text3"} Texto 3 .col-md-12 {!! Form::text('text3', null, ["class"=>"form-control"]) !!} - if ($errors->has('text3')) %span.help-block %strong {{ $errors->first('text3') }}