@extends('dashboard.layouts.index') @section('page_title') @lang('global.bio') @lang("global.branches") @stop @section('breadcrumb') @stop @section('content')
@csrf

@lang("global.bio") @lang("global.branches")

@component('dashboard.components.edit_text2',[ "name" => "wifi_name", "type" => "text", "title" => __("global.wifi_name"), "value" => $model!==null?$model->wifi_name:'' ]) @endcomponent @component('dashboard.components.edit_text2',[ "name" => "wifi_password", "type" => "password", "title" => __("global.wifi_password"), "value" => $model!==null?$model->wifi_password:'' ]) @endcomponent @component('dashboard.components.edit_text2',[ "name" => "ip_address", "type" => "text", "title" => __("global.ip_address"), "value" => $model!==null?$model->ip_address:'' ]) @endcomponent @component('dashboard.components.edit_text2',[ "name" => "address", "type" => "text", "title" => __("global.address"), "value" => $model!==null?$model->address:'' ]) @endcomponent @component('dashboard.components.edit_text2',[ "name" => "radius", "type" => "text", "title" => __("global.radius"), "value" => $model!==null?$model->radius:'' ]) @endcomponent @component('dashboard.components.edit_text2',[ "name" => "check_in_time", "type" => "time", "title" => __("global.check_in_time"), "value" => $model!==null?$model->check_in_time:'' ]) @endcomponent @component('dashboard.components.edit_text2',[ "name" => "checkout_in_time", "type" => "time", "title" => __("global.checkout_in_time"), "value" => $model!==null?$model->checkout_in_time:'' ]) @endcomponent @component('dashboard.components.edit_text2',[ "name" => "lat", "type" => "text", "title" => __("global.lat"), "value" => $model!==null?$model->lat:'' ]) @endcomponent @component('dashboard.components.edit_text2',[ "name" => "long", "type" => "text", "title" => __("global.long"), "value" => $model!==null?$model->long:'' ]) @endcomponent
@stop