@extends('layouts.app') @section('title', __('master::lang.create_free_subscription')) @section('content')

@lang('master::lang.create_free_subscription')

{{-- عرض رسائل النجاح --}} @if(session('success'))
{{ session('success') }}
@endif {{-- عرض أخطاء التحقق --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open([ 'url' => route('master.subscription.freeSubscriptionStore.only'), 'method' => 'POST', ]) !!} {{-- اختيار العميل --}}
{!! Form::label('client_id', __('master::lang.client')) !!} {!! Form::select('client_id', $clients->pluck('name','id'), old('client_id'), [ 'class' => 'form-control select2', 'placeholder' => __('master::lang.select_client'), 'required' ]) !!}
{{-- عدد المستخدمين --}}
{!! Form::label('users_count', __('master::lang.users_count')) !!} {!! Form::number('users_count', 1, ['class'=>'form-control', 'min'=>1, 'required']) !!}
{{-- دورة الفوترة --}}
{!! Form::label('billing_cycle', __('master::lang.billing_cycle')) !!} {!! Form::select('billing_cycle', [ 'monthly' => __('master::lang.monthly'), 'yearly' => __('master::lang.yearly') ], 'monthly', ['class'=>'form-control', 'required']) !!}
{{-- زر إنشاء الاشتراك --}}
{!! Form::submit(__('master::lang.create_free_subscription'), ['class'=>'btn btn-success']) !!}
{!! Form::close() !!}
@endsection