{{ __('websystem.header.edit') }}
{!! Form::model($websystem, ['method' => 'PATCH','route' => ['websystem.update', $websystem->slug]]) !!}
{!! Form::text('title', null, array('placeholder' => __('websystem.placeholder.web-title'),'class' => 'form-control')) !!} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{!! Form::text('email', null, array('placeholder' => __('websystem.placeholder.email'),'class' => 'form-control')) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::text('address', null, array('placeholder' => __('websystem.placeholder.address'),'class' => 'form-control')) !!} @if ($errors->has('address')) {{ $errors->first('address') }} @endif
{!! Form::text('city', null, array('placeholder' => __('websystem.placeholder.city'),'class' => 'form-control')) !!} @if ($errors->has('city')) {{ $errors->first('city') }} @endif
{!! Form::text('postal_code', null, array('placeholder' => __('websystem.placeholder.postal_code'),'class' => 'form-control')) !!} @if ($errors->has('postal_code')) {{ $errors->first('postal_code') }} @endif
{!! Form::text('phone', null, array('placeholder' => __('websystem.placeholder.phone'),'class' => 'form-control')) !!} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
enable_tax === 'true') checked @endif>
{!! Form::text('tax_rate', null, array('placeholder' => __('websystem.placeholder.tax-rate'),'class' => 'form-control')) !!} {{ __('websystem.info.tax-rate') }}
@if ($errors->has('tax_rate')) {{ $errors->first('tax_rate') }} @endif
{!! Form::close() !!}
@section('custom_scripts') @endsection