@extends('layouts.app') @push('css_lib')
{{--dropzone--}}
@endpush @section('title',"Sms Settings") @section('content') @include('flash::message') @include('adminlte-templates::common.errors')
SMS
Add SMS
SMS Edit
{!! Form::open(['route' => ['sms.update', $editsms[0]->id], 'method' => 'patch']) !!}
{!! Form::label('country', 'Country Name', ['class' => 'col-5 control-label text-right']) !!}
@if(count($country)>0) @foreach ($country as $key=>$conty)
country==$conty['country_code']) selected @endif>{{$conty['country_name']}}
@endforeach @endif
{!! Form::label('store_id', trans("lang.store_name"), ['class' => 'col-5 control-label text-right']) !!}
Please Select Country
{!! Form::label('url',"Url", ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('url', $editsms [0]->url, ['class' => 'form-control','placeholder'=>"Url"]) !!}
Sms Url
{!! Form::label('country_code',"Country Code", ['class' => 'col-5 control-label text-right']) !!}
{!! Form::number('country_code', $editsms [0]->country_code, ['class' => 'form-control','placeholder'=>"Country Code"]) !!}
Country Code
{{trans('lang.save')}}
{{trans('lang.cancel')}}
{!! Form::close() !!}
@include('layouts.media_modal',['collection'=>null]) @endsection @push('scripts_lib') {{--dropzone--}} @endpush