@extends('layouts.seller') @section('css') @endsection @section('content')
{{ Form::open(['route' => $route, 'method' => 'POST', 'id' => 'ajaxSave']) }}
{!! Form::label('cost_by', __('fixed_cost.cost_by'), ['class' => 'control-label']) !!} {!! Form::select('cost_by', ['' => '-Select-']+fixedCostBy(), $data->cost_by, ['class' => 'form-control select2']) !!}
{!! Form::label('cost_type', __('fixed_cost.cost_type'), ['class' => 'control-label']) !!} {!! Form::select('cost_type', $fixedCostType, $data->cost_type, ['class' => 'form-control select2']) !!}
{!! Form::label('cost', __('fixed_cost.cost'), ['class' => 'control-label']) !!} {!! Form::text('cost', $data->cost ?? '', ['class' => 'form-control']) !!}
{!! Form::label('description', __('fixed_cost.description'), ['class' => 'control-label']) !!} {!! Form::textarea('description', $data->description, ['class' => 'form-control', 'size' => '2x3']) !!}
  • {{ Form::submit(__('common.save'), ['class' => 'btn btn-primary width80']) }}
{{ Form::close() }}
@endsection