@extends('admin.layouts.master') @push('css') @endpush @section('page-title') @include('admin.components.page-title',['title' => __($page_title)]) @endsection @section('breadcrumb') @include('admin.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("admin.dashboard"), ] ], 'active' => __($page_title)]) @endsection @section('content')
{{ __($page_title) }}
@csrf
@include('admin.components.form.input',[ 'label' => __("first Name")."*", 'name' => "firstname", 'placeholder' => __("Write Here.."), 'value' => old("firstname"), ])
@include('admin.components.form.input',[ 'label' => __("last Name")."*", 'name' => "lastname", 'placeholder' => __("Write Here.."), 'value' => old("lastname"), ])
@include('admin.components.form.input',[ 'label' => __("business Name")."*", 'name' => "business_name", 'placeholder' => __("Write Here.."), 'value' => old("business_name"), ])
@include('admin.components.form.input',[ 'label' =>__("Email")."*", 'name' => "email", 'placeholder' =>__("Enter Email"), 'value' => old("email"), ])
+
@error("mobile") {{ $message }} @enderror
@error("password") {{ $message }} @enderror
@include('admin.components.form.switcher', [ 'label' => __("Status"), 'value' => old('status'), 'name' => "status", 'options' => [__("active") => 1, __("banned") => 0], 'permission' => "admin.merchants.store", ])
@include('admin.components.form.switcher', [ 'label' => __("email Verification"), 'value' => old('email_verified'), 'name' => "email_verified", 'options' => [__("Verified") => 1, __("Unverified") => 0], 'permission' => "admin.merchants.store", ])
@include('admin.components.form.switcher', [ 'label' => __("SMS Verification"), 'value' => old('sms_verified'), 'name' => "sms_verified", 'options' => [__("Verified") => 1, __("Unverified") => 0], 'permission' => "admin.merchants.store", ])
@include('admin.components.form.switcher', [ 'label' => __("KYC Verification"), 'value' => old('kyc_verified'), 'name' => "kyc_verified", 'options' => [__("Verified") => 1, __("Unverified") => 0], 'permission' => "admin.merchants.store", ])
@endsection @push("script") @endpush