@extends('admin.layouts.master') @section('title','Affiliate Settings') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Affiliate Settings') }}
@csrf
{{ __('Referral Code Length:') }}
{{ __('Point per referral:') }}
{{ __('Front Settings') }}
{{ __('Image') }}:
*
{{ __("Upload") }}
{{ __("Choose file") }}
@if(isset($affilates->image) && $affilates->image != null && $affilates->image !='' && @file_get_contents('images/affiliate/'.$affilates->image))
@endif
{{ __('Affiliate Details') }}:
{!! $affilates ? $affilates->text : "" !!}
{{ __('Status') }}:
{{ __("Reset")}}
{{ __("Update")}}
@endsection