@extends('layouts.master') @section('title',__('Refund Policy')) @section('breadcum') @endsection @section('maincontent')
{{ __('Refund Policy') }}
@if ($config)
{!! Form::model($config, ['method' => 'PATCH', 'route' => 'refund_pol']) !!}
{!! Form::label('refund_pol', __('Refund Policy Text')) !!} {!! Form::textarea('refund_pol', null, ['id' => 'editor1', 'class' => 'form-control']) !!} {{ $errors->first('refund_pol') }}
{!! Form::close() !!}
@endif
@endsection @section('script') @endsection