@extends('layouts/gnr_layout') @section('title', '| Edit SMS Block Days Config') @section('content')
Edit SMS Block Days Config
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::model($config, ['route' => ['smsBlockConfig.update', $config->id], 'method' => 'PUT', 'class'=>'form-horizontal form-groups', 'id' => 'smsForm']) !!}
{!! Form::label('filDateFrom', 'Start Date:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('filDateFrom', $config->filDateFrom, ['class'=>'form-control', 'id'=>'filDateFrom', 'readonly','style'=>'cursor:pointer']) !!}
{!! Form::label('filDateTo', 'End Date:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('filDateTo', $config->filDateTo, ['class'=>'form-control', 'id'=>'filDateTo', 'readonly','style'=>'cursor:pointer']) !!}
{!! Form::label('branch', 'Branch:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('branch', 'Branches:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('dateType', 'Date Type:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::close() !!}
@endsection