@extends('layouts.app') @section('title') Edit Network @stop @section('breadcrumb') @stop @section('content')
@if($errors->any())

Errors

    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif

Edit Network

Update the basic information

{{csrf_field()}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('code')) {{ $errors->first('code') }} @endif
@if ($errors->has('incentive_type')) {{ $errors->first('incentive_type') }} @endif
@if ($errors->has('cnic')) {{ $errors->first('cnic') }} @endif
@if ($errors->has('is_filer')) {{ $errors->first('is_filer') }} @endif
@if ($errors->has('ntn_number')) {{ $errors->first('ntn_number') }} @endif
@if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
@if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if($dealer->rebate_in_percent) % @else PKR @endif
@if ($errors->has('percentage')) {{ $errors->first('percentage') }} @endif
@stop @section('js') @stop