@extends('layouts.backend')
@section('title', $shippingMethod->exists ? 'Editando '.$shippingMethod->title : 'Crear nuevo')
@section('section', 'Métodos de envío')
@section('content')
{!! Form::model($shippingMethod, [
'method' => $shippingMethod->exists ? 'put' : 'post',
'route' => $shippingMethod->exists ? ['backend.shippingMethods.update', $shippingMethod->id] : 'backend.shippingMethods.store',
'class' => 'form-horizontal',
'files' => true
]) !!}
{!! Form::text('title', null, ['class' => 'form-control', 'required']) !!}
Sugerencia.
{!! Form::textarea('excerpt', null, ['class' => 'form-control', 'rows' => 5]) !!}
Sugerencia.
{!! Form::text('price', null, ['class' => 'form-control text-right number']) !!}
{!! Form::text('price_2', null, ['class' => 'form-control text-right number']) !!}
{!! Form::close() !!}
@endsection
@section('scripts')
@endsection