@extends('settings::layouts.master') @section('title', '| Viewing or updating Application\'s Phone Numbers ') @section('content')

Phone Numbers

Back to Administration
View/Update
{!! Form::open(['method' => 'PUT', 'url' => route('admin.settings.phone_numbers.update'), 'class' => 'form-horizontal col-md-12', 'role' => 'form']) !!}
{!! Form::label('main_contact_phone_number', 'Main Contact Phone Number', ['class' => '']) !!} {!! Form::text('main_contact_phone_number', isset($phone_numbers['main_contact_phone_number']) ? $phone_numbers['main_contact_phone_number'] : null, ['class' => 'form-control', 'rows' => 3, Auth::user()->hasAnyRole(['ADMIN']) ? '' : 'disabled']) !!} {{ $errors->first('main_contact_phone_number') }}
@if (Auth::user()->hasAnyRole(['ADMIN']))
@endif {!! Form::close() !!}
@endsection