@extends('web_stores.layouts.app') @section('content')
{{App\Language::trans('Web Store')}}
{!!Form::open()!!}
{!!Form::close()!!} @endsection @section('script') var field_not_fill = "{{App\Language::trans('All fields are required. Please fill before submit.')}}"; $(".btn-submit").on("click", function(){ var status = true; $("input").each(function(){ if($(this).attr("name") !== "redirect") { if($(this).val() == "" && status == true) { app.dialog.alert(field_not_fill, "{{App\Language::trans('Login Failed')}}"); $(this).focus(); status = false; } } }); if(status) { $("form").submit(); } }); @endsection