@extends('header')
@section('content')
    {!! Former::open($url)
            ->addClass('col-md-10 col-md-offset-1 warn-on-exit')
            ->method($method)
            ->rules([]) !!}
    @if ($$LOWER_NAME$)
      {!! Former::populate($$LOWER_NAME$) !!}
      
          {!! Former::text('public_id') !!}
      
    @endif
    
    
        {!! Button::normal(trans('texts.cancel'))
                ->large()
                ->asLinkTo(URL::to('/$LOWER_NAME$'))
                ->appendIcon(Icon::create('remove-circle')) !!}
        {!! Button::success(trans('texts.save'))
                ->submit()
                ->large()
                ->appendIcon(Icon::create('floppy-disk')) !!}
    
    {!! Former::close() !!}
    
    
@stop