@extends('layouts.app') @section('title', __('crm::lang.offer_catalog')) @section('content') @include('crm::layouts.nav')

@lang('crm::lang.offer_catalog')

@component('components.widget', ['class' => 'box-primary'])
@lang('lang_v1.name')@lang('sale.status')@lang('messages.action')

{!! Form::open(['id' => 'offer_create_form']) !!}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => __('lang_v1.name'), 'required']) !!}
{!! Form::select('offer_type', $offerTypes, null, ['class' => 'form-control']) !!}
{!! Form::text('description', null, ['class' => 'form-control', 'placeholder' => __('lang_v1.description')]) !!}
{!! Form::close() !!} @endcomponent
@endsection @section('javascript') @endsection