@extends('layouts.adminLayout.admin_design') @section('content')

{{ $title }}

{{ $title }}

{{ Form::open(['url' => route('currencytype.update', $currency['id'] ), 'method'=>'PATCH', 'name' => 'currencytype', 'id' => 'currencytype']) }}
{{ Form::label(__('lbl.type')) }} {{ Form::text('type', $currency['type'], ["class"=>"form-control mxlen_5","id"=>"type","name"=>"type"]) }} @if ($errors->has('type')) {{ $errors->first('type') }} @endif
{{ Form::label(__('lbl.description')) }} {{ Form::text('description', $currency['description'], ["class"=>"form-control","placeholder"=>"","id"=>"description","name"=>"description"]) }} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{{ Form::button(' '.__('lbl.save'),["type"=>"submit","name"=>"submit","value"=>"submit","class"=>"clickbtncommon btn-sm btn btn-primary ".$add_edit_allowed.""]) }} {{ __('lbl.back') }}
{{ Form::close() }}
@endsection @section('pagescript') {!! Helper::pagejs(['js/backend/currencytype/add_edit.js']) !!} @stop