@extends('backend.layout.main') @section('content') @if(session()->has('message'))
×
{{ session()->get('message') }}
@endif @if(session()->has('not_permitted'))
×
{{ session()->get('not_permitted') }}
@endif
{{trans('file.Create Discount Plan')}}
{{trans('file.The field labels marked with * are required input fields')}}.
{!! Form::open(['route' => 'discount-plans.store', 'method' => 'post']) !!}
{{trans('file.name')}} *
{{trans('file.customer')}} *
@foreach($lims_customer_list as $customer)
{{$customer->name . ' (' . $customer->phone_number . ')'}}
@endforeach
{{trans('file.Active')}}
{{trans('file.submit')}}
{!! Form::close() !!}
@endsection @push('scripts') @endpush