@extends('layouts.app') @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Website Settings').' / '.trans('Important Link') .' / '. trans('Add').'']) @include('components.sectionbar.frontmanagement-bar')
{{ csrf_field() }}
{!! Form::text('link', NULL, array('id' => 'link','required', 'class' => 'form-control','autocomplete'=>'off')) !!} @if ($errors->has('link')) {{ $errors->first('link') }} @endif
{!! Form::text('name', NULL, array('id' => 'name','required', 'class' => 'form-control','autocomplete'=>'off')) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!!Form::number('parioty', NULL, array('id' => 'parioty','required', 'class' => 'form-control','autocomplete'=>'off')) !!} @if ($errors->has('endtime')) {{ $errors->first('endtime') }} @endif
{!! Form::select('status',status(), old('status'), array('id' => 'status', 'class' => 'form-control', 'placeholder' => trans('Choose'))) !!} @if ($errors->has('status')) {{ $errors->first('status') }} @endif
@endsection