@extends('admin.layouts.app') @section('title', 'Attributes') @section('content')

{{__('Attributes')}}

{{__('Update Attribute')}}

{{ Form::model($attribute, array('route' => array('admin.attributes.update', $attribute->id), 'method' => 'POST','files'=>true)) }}
{{ Form::text('title', $attribute->title, array('id'=>'title','class' => "form-control ".APFrmErrHelp::hasError($errors, 'title')." ",'placeholder' => 'Enter name')) }} {!! APFrmErrHelp::showErrors($errors, 'title') !!}
{{ Form::text('arabic_title', $attribute->arabic_title, array('id'=>'arabic_title','class' => "form-control ".APFrmErrHelp::hasError($errors, 'arabic_title')." ",'placeholder' => 'Enter arabic name')) }} {!! APFrmErrHelp::showErrors($errors, 'arabic_title') !!}
status=='1') checked @endif value="1"> Active status=='0') checked @endif value="0"> Inactive
{{ Form::close() }}
@endsection