@extends('layouts.app') @section('title', __('messages.settings')) @section('content')

@lang('messages.settings')

{!! Form::open(['url' => action('\Modules\Manufacturing\Http\Controllers\SettingsController@store'), 'method' => 'post', 'id' => 'manufacturing_settings_form' ]) !!}
{!! Form::label('ref_no_prefix', __('manufacturing::lang.mfg_ref_no_prefix') . ':' ) !!} {!! Form::text('ref_no_prefix', !empty($manufacturing_settings['ref_no_prefix']) ? $manufacturing_settings['ref_no_prefix'] : null, ['placeholder' => __('manufacturing::lang.mfg_ref_no_prefix'), 'class' => 'form-control']); !!}


{!! __('manufacturing::lang.version_info', ['version' => $version]) !!}

{!! Form::close() !!}
@stop @section('javascript') @endsection