@extends('dashboard.layout.layout') @section('content')
{!! trans('dashboard.bill.add_bill') !!}
{!! Form::model($bill,['route' => ['dashboard.bill.update',$bill->id] , 'method' => 'PUT' , 'files' => true ,'class' => 'steps-validation wizard-circle','data-locale' => app()->getLocale() ]) !!}
{!! trans('dashboard.bill.bill') !!}


{{ csrf_field() }}

{!! Form::text("release_date", $bill->release_date , ['class' => 'form-control flatpickr-date-time', 'id' => 'fp-default', 'placeholder' => trans('dashboard.bill.release_date')]) !!}
{!! Form::text("serial_number", $bill->serial_number , ['class' => 'form-control', 'placeholder' => trans('dashboard.bill.serial_number')]) !!}
{!! Form::close() !!}
@endsection @section('vendor_styles') @endsection @section('page_styles') @endsection @section('vendor_scripts') @endsection @section('page_scripts') @endsection