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

Meal Type Item

Update Meal Type Item

{{ Html::ul($errors->all()) }} {{ Form::model($data, array('route' => array('meal_type_items.update', $data->id), 'method' => 'PUT','files'=>true)) }}

Fill details to submit


{{ Form::text('title', Request::old('title'), array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter meal name')) }}
{{ Form::text('description', Request::old('description'), array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => '')) }}

{{ Form::text('arabic_title', Request::old('arabic_title'), array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter meal name')) }}
{{ Form::text('arabic_description', Request::old('arabic_description'), array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => '')) }}
{{ Form::close() }}
@endsection @section('footer-scripts') @include('scripts.carterer') @endsection