@extends('layouts.admin') @section('title', 'Offer') @section('content') Offer Offers Create Update Offer Detail {{ Html::ul($errors->all()) }} {{ Form::model($data, array('route' => array('offers.update', $data->id), 'method' => 'PUT','files'=>true)) }} Fill details to submit English عربى Title {{ Form::text('title', Request::old('title'), array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter title name')) }} Caterer --Select Caterer-- @foreach($caterer as $caterers) caterer_id==$caterers->id) selected @endif>{{$caterers->name}} / {{$caterers->arabic_name}} @endforeach Currency --Select Currency-- @foreach($currency as $currencies) currency_id==$currencies->id) selected @endif>{{$currencies->title}} / {{$currencies->arabic_title}} @endforeach Discount Type Flat Percentage Amount {{ Form::text('amount', Request::old('amount'), array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter amount','onkeypress'=>'if ( isNaN(this.value + String.fromCharCode(event.keyCode) )) return false;')) }} Status Active Inactive Image Title {{ Form::text('arabic_title', Request::old('arabic_title'), array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter meal name')) }} {{ Form::close() }} @endsection @section('footer-scripts') @include('scripts.carterer') @endsection