@extends('dashboard.layouts.master') @section('title', __('backend.adsBannersSettings')) @section('content')
{{Form::open(['route'=>['WebmasterBannersStore'],'method'=>'POST'])}} @foreach(Helper::languagesList() as $ActiveLanguage)
{!! Form::text('title_'.@$ActiveLanguage->code,'', array('placeholder' => '','class' => 'form-control','required'=>'','maxlength'=>191, 'dir'=>@$ActiveLanguage->direction)) !!}
@endforeach
       
{!! Form::number('width','', array('placeholder' => __('backend.width'),'class' => 'form-control','id'=>'width','required'=>'','min'=>'0')) !!}
X
{!! Form::number('height','', array('placeholder' => __('backend.height'),'class' => 'form-control','id'=>'height','required'=>'','min'=>'0')) !!}
PX
   
   
   
{!! __('backend.cancel') !!}
{{Form::close()}}
@endsection