@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','Merchant Create') {{-- page style --}} @section('page-style') @endsection {{-- vendor style --}} @section('vendor-style') @endsection {{-- page content --}} @section('content')
@csrf

Merchant Create

{{-- {{dd($errors)}} --}}
Display Merchant Id *
@if ($errors->has('display_merchant_id'))
{{ $errors->first('display_merchant_id') }}
@endif
Name *
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Phone Number *
@if ($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
Address *
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
Grade *
@if ($errors->has('grade'))
{{ $errors->first('grade') }}
@endif
Limited Credit *
@if ($errors->has('limited_credit'))
{{ $errors->first('limited_credit') }}
@endif
Is Asc *

@if ($errors->has('is_asc'))
{{ $errors->first('is_asc') }}
@endif
Latitude *
@if ($errors->has('latitude'))
{{ $errors->first('latitude') }}
@endif
Longitude *
@if ($errors->has('longitude'))
{{ $errors->first('longitude') }}
@endif
Merchant Working Time
{{--
error_outline Merchant Working Time Create
--}}
@if ($errors->has('opening_time'))
{{ $errors->first('opening_time') }}
@endif
@if ($errors->has('closing_time'))
{{ $errors->first('closing_time') }}
@endif
Choose Day
Password *
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
Choose your city *
@if ($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif
Choose your township *
@if ($errors->has('township_id'))
{{ $errors->first('township_id') }}
@endif
Is Priority *

@if ($errors->has('is_priority'))
{{ $errors->first('is_priority') }}
@endif
Image *
@if ($errors->has('images'))
{{ $errors->first('images') }}
@endif
error_outline Merchant Owner Info
Owner Name *
@if ($errors->has('owner_name'))
{{ $errors->first('owner_name') }}
@endif
Owner Profile
@if ($errors->has('owner_image'))
{{ $errors->first('owner_image') }}
@endif
Owner Ph No *
@if ($errors->has('owner_phone_number'))
{{ $errors->first('owner_phone_number') }}
@endif
Owner Email
@if ($errors->has('asc_owner_email'))
{{ $errors->first('asc_owner_email') }}
@endif
Owner Address *
@if ($errors->has('owner_address'))
{{ $errors->first('owner_address') }}
@endif
Cancel
@endsection {{-- vendor script --}} @section('vendor-script') @endsection {{-- page script --}} @section('page-script') @endsection