@extends('layouts._admin.base') @section('content')
{!! Form::open(array('url' => '/dnradmin/add/CustomImage/store', 'method' => 'post', 'id' => 'pageform', 'files' => true,'class'=>'uk-form')); !!} @if(Session::has('success'))
{!!Session::get('success')!!}
@endif @if(Session::has('error'))
{!!Session::get('error')!!}
@endif @if(Session::has('upload_error'))
Alert: The following image does not fit the proper file dimensions and could not be uploaded, please check the image requirements again.

{!!Session::get('upload_error')!!}
@endif
  • Image Information
  • Image Name
    {!! Form::text('name','',array('size'=>'50','class'=>'required','id'=>'name','required')) !!} @if($errors->has('name'))
    {{ $errors->first('name') }}
    @endif
    Remaining characters
    {{--
    Price Range $
    --}}
    Credit
    {{-- {!! Form::text('startPrice','',array('size'=>'50','class'=>'required','style' => 'width: 30%;','placeholder'=>'starting price')) !!} - {!! Form::text('endPrice','',array('size'=>'50','class'=>'required','style' => 'width: 30%;','placeholder'=>'ending price')) !!} @if($errors->has('startPrice'))
    {{ $errors->first('startPrice') }}
    @endif @if($errors->has('endPrice'))
    {{ $errors->first('endPrice') }}
    @endif --}} @if($errors->has('credit_options'))
    {{ $errors->first('credit_options') }}
    @endif
    • Edited Image (thumbnail)
    • Select image Change Remove
      {{--
      Formats: png, gif, jpg • Max Size: 2MB • Min Dimension: {{ PRODUCT_IMAGE_WIDTH }}px x {{ PRODUCT_IMAGE_HEIGHT }}px @if($errors->has('image'))
      {{ $errors->first('image') }}
      @endif --}}
    • Unedited Image (thumbnail)
    • Upload RAW Files
    • Select RAW File Change Remove
      {{--
      Formats: png, gif, jpg • Max Size: 2MB • Min Dimension: {{ PRODUCT_IMAGE_WIDTH }}px x {{ PRODUCT_IMAGE_HEIGHT }}px @if($errors->has('image'))
      {{ $errors->first('image') }}
      @endif --}}
    • Description
    • {!! Form::textarea('description','',array('id'=>'mods2')) !!} @if($errors->has('description'))
      {{ $errors->first('description') }}
      @endif
{!! Form::button('Save Record',array('name'=>'saveinfo','class'=>'uk-button uk-button-success', 'id'=>'saveinfo_product'))!!}   {!! Form::reset('Reset',array('name'=>'reset','class'=>'uk-button uk-button-danger'))!!} {!! Form::close() !!}
@stop @section('headercodes') {!! Html::style('_admin/plugins/jasny/css/jasny-bootstrap.min.css') !!} @stop @section('extracodes') {!! Html::script('_admin/manager/tinymce/tiny_mce.js') !!} {!! Html::script('_admin/assets/js/jquery-latest.min.js') !!} {!! Html::script('_admin/assets/js/customValidation.js') !!} {!! Html::script('_admin/manager/tinymce/styles/mods5.js') !!} {!! Html::script('_admin/assets/js/count_char.js') !!} {!! Html::script('_admin/plugins/jasny/js/jasny-bootstrap.min.js') !!} @stop