@extends('layouts/default') {{-- Page title --}} @section('title') @if ($component->id) {{ trans('admin/components/general.update') }} @else {{ trans('admin/components/general.create') }} @endif @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')

@if ($component->id) {{ $component->name }} @endif

@if (\App\Models\Company::isCurrentUserAuthorized())
{{ Form::label('company_id', Lang::get('general.company')) }}
{{ Form::select('company_id', $company_list , Input::old('company_id', $component->company_id), array('class'=>'select2', 'style'=>'width:350px')) }} {!! $errors->first('company_id', ' :message') !!}
@endif
{{ Form::label('name', Lang::get('admin/components/table.title')) }}
{!! $errors->first('name', ' :message') !!}
{{ Form::label('category_id', Lang::get('general.category')) }}
{{ Form::select('category_id', $category_list , Input::old('category_id', $component->category_id), array('class'=>'select2', 'style'=>'width:100%')) }} {!! $errors->first('category_id', ' :message') !!}
{{ Form::label('location_id', Lang::get('general.location')) }}
{{ Form::select('location_id', $location_list , Input::old('location_id', $component->location_id), array('class'=>'select2', 'style'=>'width:350px')) }} {!! $errors->first('location_id', ' :message') !!}
{{ Form::label('order_number', Lang::get('admin/components/general.order')) }}
{!! $errors->first('order_number', ' :message') !!}
{{ Form::label('purchase_date', Lang::get('admin/components/general.date')) }}
{!! $errors->first('purchase_date', ' :message') !!}
{{ Form::label('purchase_cost', Lang::get('admin/components/general.cost')) }}
{{ \App\Models\Setting::first()->default_currency }} {!! $errors->first('purchase_cost', ' :message') !!}
{{ Form::label('total_qty', Lang::get('general.quantity')) }}
{!! $errors->first('total_qty', ' :message') !!}
{{ Form::label('min_amt', Lang::get('general.min_amt')) }}
{!! $errors->first('min_amt', ' :message') !!}
×

{{ trans('admin/components/general.about_components_title') }}

{{ trans('admin/components/general.about_components_text') }}

@stop