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

{{ $title }}

{{ $title }}

{{ Form::open(['url' => route('currency.store'), 'method'=>'POST', 'name' => 'currency', 'id' => 'currency']) }}
{{ Form::label(__('lbl.currency_name')) }} {{ Form::text('name', old('name'), ["class"=>"form-control mxlen_20","placeholder"=>"Currency Name","id"=>"name","name"=>"name"]) }} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{ Form::label(__('lbl.currency_code')) }} {{ Form::text('code', old('code'), ["class"=>"form-control mxlen_5","placeholder"=>"Currency Code","id"=>"code","code"=>"code"]) }} @if ($errors->has('code')) {{ $errors->first('code') }} @endif
{{ Form::label(__('lbl.currency_symbol')) }} {{ Form::select('symbol',[''=>__('lbl.currency_symbol'),'$'=>'$','£'=>'£','¥'=>'¥','€'=>'€','₹'=>'₹'],old('symbol'),["class"=>"form-control", "id"=>"symbol","code"=>"symbol"]) }} @if ($errors->has('symbol')) {{ $errors->first('symbol') }} @endif
{{ Form::button(' '.__('lbl.submit'),["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/currency/add_edit.js']) !!} @stop