@extends('layouts.admin') @section('title', 'Master Item') @section('content')

Master Item

Update Master Item

{{ Html::ul($errors->all()) }} {{ Form::model($data, array('route' => array('master_items.update', $data->id), 'method' => 'PUT','files'=>true)) }}
{{ Form::text('title', $data->title, array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter name')) }}
{{ Form::text('arabic_title', $data->arabic_title, array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter arabic name')) }}
{{ Form::textarea('description', $data->description, array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'description')) }}
{{ Form::textarea('arabic_description', $data->arabic_description, array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter arabic description')) }}
{{ Form::text('price', Request::old('price'), array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter price')) }}

status=='1') checked @endif value="1"> Active status=='0') checked @endif value="0"> Inactive
{{ Form::close() }}
@endsection