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

{{ $title }}

{{ $title }}

{{ Form::open(['url' => route('tillcashdrawer.store'), 'method'=>'POST', 'name' => 'tillcashdrawer', 'id' => 'tillcashdrawer']) }}
{{ Form::label(__('lbl.title')) }} {{ Form::text('title', old('title'), ["class"=>"form-control","placeholder"=>"","id"=>"title","name"=>"title"]) }} @if ($errors->has('title')) {{ $errors->first('title') }} @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/tillcashdrawer/add_edit.js']) !!} @stop