@extends('admin.layouts.master') @section('page_title', __('admin.Edit :name' , ['name' => __('admin.Currency')])) @section('page_heading', __('admin.Edit :name' , ['name' => __('admin.Currency')])) @section('page_text', __('admin.Edit :name' , ['name' => __('admin.Currency')])) @section('page_breadcrumb_icon') @endsection @section('page_breadcrumb_item', 'Currency') @section('page_breadcrumb_item2', 'Edit Currency') @section('content')
{!! Form::model($currency, ['method' => 'PATCH','route' => ['currency.update', $currency->id]]) !!}
{!! Form::text('title', null, array('required'=>'required','placeholder' => '','class' => 'form-control')) !!}
{!! Form::text('symbol', null, array('required'=>'required','placeholder' => 'Enter Symbol','class' => 'form-control')) !!}
{!! Form::text('exchange_rate', null, array('required'=>'required','placeholder' => 'Enter Exchange Rate','class' => 'form-control')) !!}
@lang('admin.Cancel')
{!! Form::close() !!}
@endsection