@extends('layouts.app') @push('css_lib') {{--dropzone--}} @endpush @section('title',"Sms Settings") @section('content') @include('flash::message') @include('adminlte-templates::common.errors')
{!! Form::open(['route' => ['sms.update', $editsms[0]->id], 'method' => 'patch']) !!}
{!! Form::label('country', 'Country Name', ['class' => 'col-5 control-label text-right']) !!}
{!! Form::label('store_id', trans("lang.store_name"), ['class' => 'col-5 control-label text-right']) !!}
{!! 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.cancel')}}
{!! Form::close() !!}
@include('layouts.media_modal',['collection'=>null]) @endsection @push('scripts_lib') {{--dropzone--}} @endpush