@extends('layouts.admin') @section('content')
@lang('messages.Create Variant')
{!! Form::open(['class' => 'form-horizontal', 'id' => 'variant_form', 'files' => true]) !!}
{{ Form::label('name_en', 'Variant Name') }}*
{!! Form::text('name_en', '', ['id' => 'name_en', 'class' => 'form-control', 'placeholder' => 'variant name here...', 'maxlength'=>'250']) !!}
{!! Form::close() !!}
@endsection