@extends('layouts.app') @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Website Settings').' / '.trans('Gallery') .' / '. trans('Add').'']) @include('components.sectionbar.frontmanagement-bar')
{{ csrf_field() }}
{!! Form::text('title', NULL, array('id' => 'title','required', 'class' => 'form-control', 'placeholder' => trans('Title'))) !!} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{!! Form::textarea('description', NULL, array('rows' => '5','id' => 'description', 'required', 'class' => 'form-control', 'placeholder' => trans('Description'))) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! Form::select('status',status(), old('status'), array('id' => 'status', 'class' => 'form-control', 'placeholder' => trans('Choose'))) !!} @if ($errors->has('status')) {{ $errors->first('status') }} @endif
@component('components.cropper.element',['width'=>'380','height'=>'366','type'=>'square']) @endcomponent @endsection