@extends('layouts.app') @section('title') Add New Dealer @stop @section('breadcrumb')
Home
@permission('list-dealer')
All Dealers List
@endpermission
Add New Dealer
@stop @section('content')
@if($errors->any())
Errors
{!! implode('', $errors->all('
:message
')) !!}
@endif
Add New Dealer
Add Basic Information
{{csrf_field()}}
Full Name
*
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Code
*
@if ($errors->has('code'))
{{ $errors->first('code') }}
@endif
Type
*
None
@foreach($types as $t) @if(old('incentive_type') == $t->id)
{{$t->name}}
@else
{{$t->name}}
@endif @endforeach
@if ($errors->has('incentive_type'))
{{ $errors->first('incentive_type') }}
@endif
Is Filer
YES
NO
@if ($errors->has('is_filer'))
{{ $errors->first('is_filer') }}
@endif
CNIC
*
This Dealer cnic is found in list of DNFBP. You can't add this Dealer record.
@if ($errors->has('cnic'))
{{ $errors->first('cnic') }}
@endif
NTN Number
*
@if ($errors->has('ntn_number'))
{{ $errors->first('ntn_number') }}
@endif
Registration No.
*
@if ($errors->has('reg_no'))
{{ $errors->first('reg_no') }}
@endif
NTN Number
*
@if ($errors->has('ntn_number'))
{{ $errors->first('ntn_number') }}
@endif
NTN Number
*
@if ($errors->has('ntn_number'))
{{ $errors->first('ntn_number') }}
@endif
Country
*
None
@foreach($countries as $c)
{{$c->name}}
@endforeach
@if ($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
City
*
None
@if ($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif
Address
*
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
Email
*
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Password
*
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
Phone Number
*
@if ($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
Rebate
*
(use percent
)
PKR
@if ($errors->has('percentage'))
{{ $errors->first('percentage') }}
@endif
All Fields Required*
Save
@stop @section('js') @stop