@extends('layouts.admin') @section('title', 'Category') @section('content') Category Category Update Update Category {{ Html::ul($errors->all()) }} {{ Form::model($data, array('route' => array('categories.update', $data->id), 'method' => 'PUT','files'=>true)) }} Name {{ Form::text('title', $data->title, array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter name')) }} Arabic Name {{ Form::text('arabic_title', $data->arabic_title, array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter arabic name')) }} Status status=='1') checked @endif value="1"> Active status=='0') checked @endif value="0"> Inactive {{ Form::close() }} @endsection